]> git.ipfire.org Git - thirdparty/glibc.git/blob - ChangeLog
Fix -Wempty-body warnings in Hurd-specific code.
[thirdparty/glibc.git] / ChangeLog
1 2019-02-27 Joseph Myers <joseph@codesourcery.com>
2
3 * hurd/hurdinit.c (_hurd_init): Use braces around empty body of an
4 if statement.
5
6 * benchtests/bench-strcpy.c (do_test): Use space before '('.
7 * benchtests/bench-string.h (cmdline_process_function): Likewise.
8 * benchtests/bench-strlen.c (do_test): Likewise.
9 (test_main): Likewise.
10 * catgets/gencat.c (read_old): Likewise.
11 * elf/cache.c (load_aux_cache): Likewise.
12 * iconvdata/bug-iconv8.c (do_test): Likewise.
13 * math/test-tgmath-ret.c (do_test): Likewise.
14 * nis/nis_call.c (rec_dirsearch): Likewise.
15 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
16 * nptl/tst-audit-threads.c (do_test): Likewise.
17 * nptl/tst-cancel4-common.h (set_socket_buffer): Likewise.
18 * nss/nss_test1.c (init): Likewise.
19 * nss/test-netdb.c (test_hosts): Likewise.
20 * posix/execvpe.c (maybe_script_execute): Likewise.
21 * stdio-common/tst-fmemopen4.c (do_test): Likewise.
22 * stdio-common/tst-printf.c (do_test): Likewise.
23 * stdio-common/vfscanf-internal.c (__vfscanf_internal): Likewise.
24 * stdlib/fmtmsg.c (NKEYWORDS): Likewise.
25 * stdlib/qsort.c (STACK_SIZE): Likewise.
26 * stdlib/test-canon.c (do_test): Likewise.
27 * stdlib/tst-swapcontext1.c (do_test): Likewise.
28 * string/memcmp.c (OPSIZ): Likewise.
29 * string/test-strcpy.c (do_test): Likewise.
30 (do_random_tests): Likewise.
31 * string/test-strlen.c (do_test): Likewise.
32 (test_main): Likewise.
33 * string/test-strrchr.c (do_test): Likewise.
34 (do_random_tests): Likewise.
35 * string/tester.c (test_memrchr): Likewise.
36 (test_memchr): Likewise.
37 * sysdeps/generic/memcopy.h (OPSIZ): Likewise.
38 * sysdeps/generic/unwind-dw2.c (execute_stack_op): Likewise.
39 * sysdeps/generic/unwind-pe.h (read_sleb128): Likewise.
40 (read_encoded_value_with_base): Likewise.
41 * sysdeps/hppa/dl-machine.h (elf_machine_runtime_setup): Likewise.
42 * sysdeps/hppa/fpu/feupdateenv.c (__feupdateenv): Likewise.
43 * sysdeps/ia64/fpu/sfp-machine.h (TI_BITS): Likewise.
44 * sysdeps/mach/hurd/spawni.c (__spawni): Likewise.
45 * sysdeps/posix/spawni.c (maybe_script_execute): Likewise.
46 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (query_auxv):
47 Likewise.
48 * sysdeps/unix/sysv/linux/aarch64/bits/procfs.h (ELF_NGREG):
49 Likewise.
50 * sysdeps/unix/sysv/linux/arm/bits/procfs.h (ELF_NGREG): Likewise.
51 * sysdeps/unix/sysv/linux/arm/ioperm.c (init_iosys): Likewise.
52 * sysdeps/unix/sysv/linux/csky/bits/procfs.h (ELF_NGREG):
53 Likewise.
54 * sysdeps/unix/sysv/linux/m68k/bits/procfs.h (ELF_NGREG):
55 Likewise.
56 * sysdeps/unix/sysv/linux/nios2/bits/procfs.h (ELF_NGREG):
57 Likewise.
58 * sysdeps/unix/sysv/linux/spawni.c (maybe_script_execute):
59 Likewise.
60 * sysdeps/unix/sysv/linux/x86/bits/procfs.h (ELF_NGREG): Likewise.
61 * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h
62 (FP_XSTATE_MAGIC2_SIZE): Likewise.
63 * sysdeps/x86/fpu/sfp-machine.h (TI_BITS): Likewise.
64 * time/test_time.c (main): Likewise.
65
66 2019-02-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
67
68 * wcsmbs/wcsnlen.c (__wcsnlen): Rewrite using wmemchr.
69
70 * wcsmbs/wcsncpy.c (__wcsncpy): Rewrite using wcsnlen, wmemset, and
71 wmemcpy.
72
73 * wcsmbs/wcsncat.c (wcsncat): Rewrite using wcslen, wcsnlen, and
74 wmemcpy.
75
76 * wcsmbs/wcscpy.c (__wcpcpy): Rewrite using wcslen and wmemcpy.
77
78 * include/wchar.h (__wcscpy): New prototype.
79 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c
80 (__wcscpy): Route internal symbol to generic implementation.
81 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c (wcscpy):
82 Add internal __wcscpy alias.
83 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c (wcscpy): Likewise.
84 * sysdeps/s390/wcscpy.c (wcscpy): Likewise.
85 * sysdeps/x86_64/multiarch/wcscpy.c (wcscpy): Likewise.
86 * wcsmbs/wcscpy.c (wcscpy): Add
87 * sysdeps/x86_64/multiarch/wcscpy-c.c (WCSCPY): Adjust macro to
88 use generic implementation.
89 * wcsmbs/wcscat.c (wcscat): Rewrite using wcslen and wcscpy.
90
91 * wcsmbs/wcpncpy.c (__wcpcpy): Rewrite using wcslen, wmemcpy, and
92 wmemset.
93
94 * sysdeps/m68k/wcpcpy.c: Remove file.
95 * wcsmbs/wcpcpy.c (__wcpcpy): Rewrite using wcslen and wmemcpy.
96
97 2019-02-26 Joseph Myers <joseph@codesourcery.com>
98
99 * sysdeps/arm/sysdep.h (#if condition): Break lines before rather
100 than after operators.
101 * sysdeps/mach/hurd/fork.c (__fork): Likewise.
102 * sysdeps/mach/hurd/getcwd.c
103 (__hurd_canonicalize_directory_name_internal): Likewise.
104 * sysdeps/mach/hurd/htl/pt-mutex-consistent.c
105 (pthread_mutex_consistent): Likewise.
106 * sysdeps/mach/hurd/htl/pt-mutex-init.c (_pthread_mutex_init):
107 Likewise.
108 * sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
109 (__pthread_mutex_transfer_np): Likewise.
110 * sysdeps/mach/hurd/htl/pt-mutex-unlock.c
111 (__pthread_mutex_unlock): Likewise.
112 * sysdeps/mach/hurd/htl/pt-mutex.h (ROBUST_LOCK): Likewise.
113 (mtx_owned_p): Likewise.
114 * sysdeps/mach/hurd/htl/pt-mutexattr-getrobust.c
115 (pthread_mutexattr_getrobust): Likewise.
116 * sysdeps/mach/hurd/i386/init-first.c (init1): Likewise.
117 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
118 Likewise.
119 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
120 * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Likewise.
121 * sysdeps/mach/hurd/kill.c (__kill): Likewise.
122 * sysdeps/mach/hurd/mig-reply.c (__mig_get_reply_port): Likewise.
123 * sysdeps/mach/hurd/ptrace.c (ptrace): Likewise.
124 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
125 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (#if condition):
126 Likewise.
127 * sysdeps/unix/sysv/linux/alpha/ioperm.c (process_cpuinfo):
128 Likewise.
129 * sysdeps/unix/sysv/linux/bits/timex.h (STA_RONLY): Likewise.
130 * sysdeps/unix/sysv/linux/csky/sysdep.h (#if condition): Likewise.
131 * sysdeps/unix/sysv/linux/generic/____longjmp_chk.c
132 (____longjmp_chk): Likewise.
133 * sysdeps/unix/sysv/linux/generic/futimesat.c (futimesat):
134 Likewise.
135 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
136 (INTERNAL_SYSCALL): Likewise.
137 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
138 (INTERNAL_SYSCALL): Likewise.
139 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
140 (__get_clockfreq_via_cpuinfo): Likewise.
141
142 * sysdeps/i386/dl-machine.h (elf_machine_rela): Add fall-through
143 comments.
144 * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (s(__cexp)): Likewise.
145 * sysdeps/m68k/memcopy.h (WORD_COPY_FWD): Likewise.
146 (WORD_COPY_BWD): Likewise.
147 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
148 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
149 Likewise.
150 * sysdeps/s390/iso-8859-1_cp037_z900.c (TR_LOOP): Likewise.
151 * sysdeps/mips/dl-machine.h (elf_machine_reloc): Move fall-through
152 comment.
153 * sysdeps/mips/dl-trampoline.c (__dl_runtime_resolve): Likewise.
154
155 2019-02-25 Joseph Myers <joseph@codesourcery.com>
156
157 * dirent/dirent.h [!_DIRENT_HAVE_D_NAMLEN
158 && _DIRENT_HAVE_D_RECLEN] (_D_ALLOC_NAMLEN): Break lines before
159 rather than after operators.
160 * elf/cache.c (print_cache): Likewise.
161 * gshadow/fgetsgent_r.c (__fgetsgent_r): Likewise.
162 * htl/pt-getattr.c (__pthread_getattr_np): Likewise.
163 * hurd/hurdinit.c (_hurd_setproc): Likewise.
164 * hurd/hurdkill.c (_hurd_sig_post): Likewise.
165 * hurd/hurdlookup.c (__file_name_lookup_under): Likewise.
166 * hurd/hurdsig.c (_hurd_internal_post_signal): Likewise.
167 (reauth_proc): Likewise.
168 * hurd/lookup-at.c (__file_name_lookup_at): Likewise.
169 (__file_name_split_at): Likewise.
170 (__directory_name_split_at): Likewise.
171 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
172 * hurd/port2fd.c (_hurd_port2fd): Likewise.
173 * iconv/gconv_dl.c (do_print): Likewise.
174 * inet/netinet/in.h (struct sockaddr_in): Likewise.
175 * libio/wstrops.c (_IO_wstr_seekoff): Likewise.
176 * locale/setlocale.c (new_composite_name): Likewise.
177 * malloc/memusagestat.c (main): Likewise.
178 * misc/fstab.c (fstab_convert): Likewise.
179 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt):
180 Likewise.
181 * nss/nss_compat/compat-grp.c (getgrent_next_nss): Likewise.
182 (getgrent_next_file): Likewise.
183 (internal_getgrnam_r): Likewise.
184 (internal_getgrgid_r): Likewise.
185 * nss/nss_compat/compat-initgroups.c (getgrent_next_nss):
186 Likewise.
187 (internal_getgrent_r): Likewise.
188 * nss/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
189 (getpwent_next_nss): Likewise.
190 (getpwent_next_file): Likewise.
191 (internal_getpwnam_r): Likewise.
192 (internal_getpwuid_r): Likewise.
193 * nss/nss_compat/compat-spwd.c (getspent_next_nss_netgr):
194 Likewise.
195 (getspent_next_nss): Likewise.
196 (internal_getspnam_r): Likewise.
197 * pwd/fgetpwent_r.c (__fgetpwent_r): Likewise.
198 * shadow/fgetspent_r.c (__fgetspent_r): Likewise.
199 * string/strchr.c (STRCHR): Likewise.
200 * string/strchrnul.c (STRCHRNUL): Likewise.
201 * sysdeps/aarch64/fpu/fpu_control.h (_FPU_FPCR_IEEE): Likewise.
202 * sysdeps/aarch64/sfp-machine.h (_FP_CHOOSENAN): Likewise.
203 * sysdeps/csky/dl-machine.h (elf_machine_rela): Likewise.
204 * sysdeps/generic/memcopy.h (PAGE_COPY_FWD_MAYBE): Likewise.
205 * sysdeps/generic/symbol-hacks.h (__stack_chk_fail_local):
206 Likewise.
207 * sysdeps/gnu/netinet/ip_icmp.h (ICMP_INFOTYPE): Likewise.
208 * sysdeps/gnu/updwtmp.c (TRANSFORM_UTMP_FILE_NAME): Likewise.
209 * sysdeps/gnu/utmp_file.c (TRANSFORM_UTMP_FILE_NAME): Likewise.
210 * sysdeps/hppa/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Likewise.
211 * sysdeps/mach/hurd/bits/stat.h (S_ISPARE): Likewise.
212 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Likewise.
213 (open_file): Likewise.
214 * sysdeps/mach/hurd/htl/pt-mutexattr-setprotocol.c
215 (pthread_mutexattr_setprotocol): Likewise.
216 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
217 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
218 * sysdeps/mach/hurd/ptrace.c (ptrace): Likewise.
219 * sysdeps/mach/hurd/spawni.c (__spawni): Likewise.
220 * sysdeps/microblaze/dl-machine.h (elf_machine_type_class):
221 Likewise.
222 (elf_machine_rela): Likewise.
223 * sysdeps/mips/mips32/sfp-machine.h (_FP_CHOOSENAN): Likewise.
224 * sysdeps/mips/mips64/sfp-machine.h (_FP_CHOOSENAN): Likewise.
225 * sysdeps/mips/sys/asm.h (multiple #if conditionals): Likewise.
226 * sysdeps/posix/rename.c (rename): Likewise.
227 * sysdeps/powerpc/novmx-sigjmp.c (__novmx__sigjmp_save): Likewise.
228 * sysdeps/powerpc/sigjmp.c (__vmx__sigjmp_save): Likewise.
229 * sysdeps/s390/fpu/fenv_libc.h (FPC_VALID_MASK): Likewise.
230 * sysdeps/s390/utf8-utf16-z9.c (gconv_end): Likewise.
231 * sysdeps/unix/grantpt.c (grantpt): Likewise.
232 * sysdeps/unix/sysv/linux/a.out.h (N_TXTOFF): Likewise.
233 * sysdeps/unix/sysv/linux/updwtmp.c (TRANSFORM_UTMP_FILE_NAME):
234 Likewise.
235 * sysdeps/unix/sysv/linux/utmp_file.c (TRANSFORM_UTMP_FILE_NAME):
236 Likewise.
237 * sysdeps/x86/cpu-features.c (get_common_indices): Likewise.
238 * time/tzfile.c (__tzfile_compute): Likewise.
239
240 2019-02-22 Joseph Myers <joseph@codesourcery.com>
241
242 * benchtests/bench-memmem.c (simple_memmem): Break lines before
243 rather than after operators.
244 * benchtests/bench-skeleton.c (TIMESPEC_AFTER): Likewise.
245 * crypt/md5.c (md5_finish_ctx): Likewise.
246 * crypt/sha256.c (__sha256_finish_ctx): Likewise.
247 * crypt/sha512.c (__sha512_finish_ctx): Likewise.
248 * elf/cache.c (load_aux_cache): Likewise.
249 * elf/dl-load.c (open_verify): Likewise.
250 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
251 * elf/readelflib.c (process_elf_file): Likewise.
252 * elf/rtld.c (dl_main): Likewise.
253 * elf/sprof.c (generate_call_graph): Likewise.
254 * hurd/ctty-input.c (_hurd_ctty_input): Likewise.
255 * hurd/ctty-output.c (_hurd_ctty_output): Likewise.
256 * hurd/dtable.c (reauth_dtable): Likewise.
257 * hurd/getdport.c (__getdport): Likewise.
258 * hurd/hurd/signal.h (_hurd_interrupted_rpc_timeout): Likewise.
259 * hurd/hurd/sigpreempt.h (HURD_PREEMPT_SIGNAL_P): Likewise.
260 * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
261 Likewise.
262 * hurd/hurdioctl.c (fioctl): Likewise.
263 * hurd/hurdselect.c (_hurd_select): Likewise.
264 * hurd/hurdsig.c (_hurdsig_abort_rpcs): Likewise.
265 (STOPSIGS): Likewise.
266 * hurd/hurdstartup.c (_hurd_startup): Likewise.
267 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Likewise.
268 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
269 * hurd/msgportdemux.c (msgport_server): Likewise.
270 * hurd/setauth.c (_hurd_setauth): Likewise.
271 * include/features.h (__GLIBC_USE_DEPRECATED_SCANF): Likewise.
272 * libio/libioP.h [IO_DEBUG] (CHECK_FILE): Likewise.
273 * locale/programs/ld-ctype.c (set_class_defaults): Likewise.
274 * localedata/tests-mbwc/tst_swscanf.c (tst_swscanf): Likewise.
275 * login/tst-utmp.c (do_check): Likewise.
276 (simulate_login): Likewise.
277 * mach/lowlevellock.h (lll_lock): Likewise.
278 (lll_trylock): Likewise.
279 * math/test-fenv.c (ALL_EXC): Likewise.
280 * math/test-fenvinline.c (ALL_EXC): Likewise.
281 * misc/sys/cdefs.h (__attribute_deprecated_msg__): Likewise.
282 * nis/nis_call.c (__do_niscall3): Likewise.
283 * nis/nis_callback.c (cb_prog_1): Likewise.
284 * nis/nis_defaults.c (searchaccess): Likewise.
285 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
286 * nis/nis_ismember.c (internal_ismember): Likewise.
287 * nis/nis_local_names.c (nis_local_principal): Likewise.
288 * nis/nss_nis/nis-rpc.c (_nss_nis_getrpcbyname_r): Likewise.
289 * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_getnetgrent_r):
290 Likewise.
291 * nis/ypclnt.c (yp_match): Likewise.
292 (yp_first): Likewise.
293 (yp_next): Likewise.
294 (yp_master): Likewise.
295 (yp_order): Likewise.
296 * nscd/hstcache.c (cache_addhst): Likewise.
297 * nscd/initgrcache.c (addinitgroupsX): Likewise.
298 * nss/nss_compat/compat-pwd.c (copy_pwd_changes): Likewise.
299 (internal_getpwuid_r): Likewise.
300 * nss/nss_compat/compat-spwd.c (copy_spwd_changes): Likewise.
301 * posix/glob.h (__GLOB_FLAGS): Likewise.
302 * posix/regcomp.c (peek_token): Likewise.
303 (peek_token_bracket): Likewise.
304 (parse_expression): Likewise.
305 * posix/regexec.c (sift_states_iter_mb): Likewise.
306 (check_node_accept_bytes): Likewise.
307 * posix/tst-spawn3.c (do_test): Likewise.
308 * posix/wordexp-test.c (testit): Likewise.
309 * posix/wordexp.c (parse_tilde): Likewise.
310 (exec_comm): Likewise.
311 * posix/wordexp.h (__WRDE_FLAGS): Likewise.
312 * resource/vtimes.c (TIMEVAL_TO_VTIMES): Likewise.
313 * setjmp/sigjmp.c (__sigjmp_save): Likewise.
314 * stdio-common/printf_fp.c (__printf_fp_l): Likewise.
315 * stdio-common/tst-fileno.c (do_test): Likewise.
316 * stdio-common/vfprintf-internal.c (vfprintf): Likewise.
317 * stdlib/strfmon_l.c (__vstrfmon_l_internal): Likewise.
318 * stdlib/strtod_l.c (round_and_return): Likewise.
319 (____STRTOF_INTERNAL): Likewise.
320 * stdlib/tst-strfrom.h (TEST_STRFROM): Likewise.
321 * string/strcspn.c (STRCSPN): Likewise.
322 * string/test-memmem.c (simple_memmem): Likewise.
323 * termios/tcsetattr.c (tcsetattr): Likewise.
324 * time/alt_digit.c (_nl_parse_alt_digit): Likewise.
325 * time/asctime.c (asctime_internal): Likewise.
326 * time/strptime_l.c (__strptime_internal): Likewise.
327 * time/sys/time.h (timercmp): Likewise.
328 * time/tzfile.c (__tzfile_compute): Likewise.
329
330 2019-02-21 Patsy Griffin Franklin <pfrankli@redhat.com>
331
332 [BZ #21915]
333 * nss/tst-nss-files-hosts-long.root/etc/host.conf: New file.
334
335 2019-02-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
336
337 * argp/argp-help.c (__argp_error_internal): New function,
338 renamed from __argp_error, but that takes a 'mode_flags'
339 parameter to control the format of long double parameters.
340 (__argp_error): Converted into a call __argp_error_internal.
341 (__argp_failure_internal): New function, renamed from
342 __argp_failure, but that takes a 'mode_flags' parameter.
343 (__argp_failure): Converted into a call __argp_failure_internal.
344 * misc/err.c (__vwarnx_internal): New function, renamed from
345 vwarnx, but that takes a 'mode_flags' parameter.
346 (vwarnx): Converted into a call to __vwarnx_internal.
347 (__vwarn_internal): New function, renamed from vwarn, but that
348 takes a 'mode_flags' parameter.
349 (vwarn): Converted into a call to __vwarn_internal.
350 * misc/error.c (error_tail): Add 'mode_flags' parameter. Update
351 call to __vfxprintf with 'mode_flags'.
352 (__error_internal): New function, renamed from error, but that
353 takes a 'mode_flags' parameter.
354 (error): Converted into a call to __error_internal.
355 (__error_at_line_internal): New function, renamed from
356 error_at_line, but that takes a 'mode_flags' parameter.
357 (error_at_line): Converted into a call to
358 __error_at_line_internal.
359 * include/stdio.h (__vfxprintf): Add mode_flags parameter.
360 * stdio-common/fxprintf.c (locked_vfxprintf, __vfxprintf):
361 Likewise.
362
363 2019-02-20 Martin Liska <mliska@suse.cz>
364
365 * math/Makefile: Install math-vector-fortran.h.
366 * bits/math-vector-fortran.h: New file.
367 * sysdeps/x86/fpu/bits/math-vector-fortran.h: New file.
368
369 2019-02-20 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
370
371 * sysdeps/powerpc/powerpc64/le/configure.ac: Remove test.
372 * sysdeps/powerpc/powerpc64/le/configure: Regenerate.
373
374 2019-02-19 Wolfram Sang <wsa@the-dreams.de>
375
376 * nptl/pthread_mutex_trylock.c: Fix comment.
377
378 2019-02-19 Carlos O'Donell <carlos@redhat.com>
379
380 * nptl/pthread_tryjoin.c: Fix comment.
381
382 2019-02-18 Joseph Myers <joseph@codesourcery.com>
383
384 [BZ #24231]
385 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Add break
386 after R_SPARC_H34 case.
387
388 2019-02-18 Florian Weimer <fweimer@redhat.com>
389
390 * resolv/compat-gethnamaddr.c (Dprintf): Remove definition.
391 (getanswer): Do not call Dprintf.
392 (res_gethostbyname2_context): Likewise.
393 (res_gethostbyaddr_context): Likewise.
394
395 2019-02-18 Florian Weimer <fweimer@redhat.com>
396
397 * libio/libio.h (_IO_stdin, _IO_stdout, _IO_stderr): Remove
398 declaration.
399 * libio/stdio.c (AL, AL2, _IO_stdin, _IO_stdout, _IO_stderr):
400 Remove definitions.
401 * libio/stdfiles.c: Update comment.
402 * libio/oldstdfiles.c (_IO_check_libio): Update comment. Do not
403 set _IO_stdin, _IO_stdout, _IO_stderr.
404 * libio/libioP.h (_IO_fake_stdiobuf): Remove unused declaration.
405 [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)] (_IO_legacy_file): New
406 inline function.
407 (_IO_deallocate_file): New inline function.
408 * libio/iolibio.h (_IO_vprintf): Remove definition.
409 * libio/iofclose.c (_IO_new_fclose): Use _IO_deallocate_file.
410 * libio/oldiofclose.c (_IO_old_fclose): Likewise.
411 * libio/iofwide.c (_IO_fwide): Use __glibc_unlikely and
412 _IO_legacy_file.
413 * libio/oldfileops.c (_IO_old_file_init_internal): Remove
414 __builtin_expect. Use _IO_legacy_file.
415
416 2019-02-18 Stefan Liebler <stli@linux.ibm.com>
417
418 * sysdeps/unix/sysv/linux/tst-clone3.c (do_test):
419 Initialize ctid with a known value and remove update of ctid
420 after clone.
421 (wait_tid): Adjust arguments and call futex_wait with ctid_val
422 as assumed current value of ctid_ptr.
423
424 2019-02-15 Florian Weimer <fweimer@redhat.com>
425
426 Check that non-sysdeps headers have wrapper headers.
427 * scripts/check-wrapper-headers.py: New file.
428 * Makefile (tests-special): Add check-wrapper-headers.out.
429 (check-wrapper-headers.out): New target.
430 * Rules (tests-special): Add check-wrapper-headers.out.
431 (check-wrapper-headers.out): New target.
432
433 2019-02-15 Florian Weimer <fweimer@redhat.com>
434
435 Add missing header wrappers under include/.
436 * include/ar.h: New file.
437 * include/bits/mqueue2.h: Likewise.
438 * include/bits/stdio.h: Likewise.
439 * include/bits/stdio2.h: Likewise.
440 * include/fstab.h: Likewise.
441 * include/fts.h: Likewise.
442 * include/lastlog.h: Likewise.
443 * include/netinet/icmp6.h: Likewise.
444 * include/netinet/igmp.h: Likewise.
445 * include/netinet/ip6.h: Likewise.
446 * include/re_comp.h: Likewise.
447 * include/regexp.h: Likewise.
448 * include/rpcsvc/bootparam.h: Likewise.
449 * include/rpcsvc/yp_prot.h: Likewise.
450 * include/sys/random.h: Likewise.
451 * include/sys/stropts.h: Likewise.
452 * include/sys/ttychars.h: Likewise.
453 * include/sys/vfs.h: Likewise.
454 * include/wait.h: Likewise.
455
456 2019-02-15 Florian Weimer <fweimer@redhat.com>
457
458 * nptl_db/proc_service.h: Move to ...
459 * sysdeps/nptl/proc_service.h: ... here.
460 * nptl_db/thread_db.h: Move to ...
461 * sysdeps/nptl/thread_db.h: ... here.
462 * nptl/descr.h: Include <thread_db.h>.
463
464 2019-02-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
465
466 * io/Makefile (tests): Add tst-lockf.
467 * io/lockf.c (lockf): Use __fcntl and only define for
468 !__OFF_T_MATCHES_OFF64_T.
469 * io/lockf64.c (__lockf64): Call __fcntl64 and alias to lockf for
470 __OFF_T_MATCHES_OFF64_T case.
471 * io/tst-lockf.c: New file.
472 * sysdeps/unix/sysv/linux/i386/lockf64.c: Remove file.
473 * sysdeps/unix/sysv/linux/arm/lockf64.c: Likewise.
474 * sysdeps/unix/sysv/linux/m68k/lockf64.c: Likewise.
475 * sysdeps/unix/sysv/linux/mips/mips32/lockf64.c: Likewise.
476 * sysdeps/unix/sysv/linux/mips/mips64/n32/lockf64.c: Likewise.
477 * sysdeps/unix/sysv/linux/powerpc/powerpc32/lockf64.c: Likewise.
478 * sysdeps/unix/sysv/linux/s390/s390-32/lockf64.c: Likewise.
479 * sysdeps/unix/sysv/linux/sh/lockf64.c: Likewise.
480 * sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c: Likewise.
481
482 2019-02-15 Florian Weimer <fweimer@redhat.com>
483
484 [BZ #24211]
485 * nptl/pthread_join_common.c (__pthread_timedjoin_ex): Do not read
486 pd->result after the thread descriptor has been freed.
487
488 2019-02-15 Joseph Myers <joseph@codesourcery.com>
489
490 * sunrpc/tst-svc_register.c (rpcbind_address): Remove qualifier
491 from function return type.
492
493 * setjmp/tst-setjmp.c (jump): Use __attribute__ ((__noreturn__)).
494
495 2019-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
496
497 * scripts/test_printers_common.py: Set TERM to a known harmless
498 value.
499
500 2019-02-14 Joseph Myers <joseph@codesourcery.com>
501
502 * sunrpc/xdr.c (xdr_int): Add fall-through comment.
503 (xdr_u_int): Likewise.
504 (xdr_enum): Likewise.
505 (xdr_bytes): Reword fall-through comment.
506 (xdr_string): Likewise.
507
508 2019-02-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
509
510 [BZ #2421]
511 * nptl/Makefile (lpthread-routines): Remove lll_timedwait_tid.
512 (tests): Add tst-join8 tst-join9.
513 * nptl/lll_timedwait_tid.c: Remove file.
514 * sysdeps/sparc/sparc32/lll_timedwait_tid.c: Likewise.
515 * sysdeps/unix/sysv/linux/i386/lll_timedwait_tid.c: Likewise.
516 * sysdeps/sysv/linux/x86_64/lll_timedwait_tid.c: Likewise.
517 * nptl/pthread_join_common.c (timedwait_tid): New function.
518 (__pthread_timedjoin_ex): Act as cancellation entrypoint is block
519 is set.
520 * nptl/tst-join5.c (thread_join): New function.
521 (tf1, tf2, do_test): Use libsupport and add pthread_timedjoin_np
522 check.
523 * nptl/tst-join8.c: New file.
524 * nptl/tst-join9.c: Likewise.
525 * sysdeps/nptl/lowlevellock-futex.h (lll_futex_wait_cancel,
526 lll_futex_timed_wait_cancel): Add generic macros.
527 * sysdeps/nptl/lowlevellock.h (__lll_timedwait_tid, lll_wait_tid):
528 Remove definitions.
529 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
530 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
531 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
532 * sysdeps/sparc/sparc32/lowlevellock.c (__lll_timedwait_tid):
533 Remove function.
534 * sysdeps/unix/sysv/linux/i386/lowlevellock.S (__lll_timedwait_tid):
535 Likewise.
536 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
537 * sysdeps/unix/sysv/linux/lowlevellock-futex.h
538 (lll_futex_timed_wait_cancel): New macro.
539
540 2019-02-14 Wilco Dijkstra <wdijkstr@arm.com>
541
542 * benchtests/Makefile: Add malloc-simple benchmark.
543 * benchtests/bench-malloc-simple.c: New benchmark.
544
545 2019-02-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
546
547 * benchtests/bench-memmove.c (do_one_test): Remove unused
548 ORIG_SRC.
549 (do_test): Adjust.
550 * benchtests/bench-memmove-large.c (do_one_test): Remove unused
551 ORIG_SRC.
552 (do_test): Adjust.
553
554 2019-01-13 Jim Wilson <jimw@sifive.com>
555
556 [BZ #24040]
557 * elf/Makefile (CFLAGS-tst-unwind-main.c): Add -DUSE_PTHREADS=0.
558 * elf/tst-unwind-main.c: If USE_PTHEADS, include pthread.h and error.h
559 (func): New.
560 (main): If USE_PTHREADS, call pthread_create to run func. Otherwise
561 call func directly.
562 * nptl/Makefile (tests): Add tst-unwind-thread.
563 (CFLAGS-tst-unwind-thread.c): Define.
564 * nptl/tst-unwind-thread.c: New file.
565 * sysdeps/unix/sysv/linux/riscv/clone.S (__thread_start): Mark ra
566 as undefined.
567
568 2019-02-13 Joseph Myers <joseph@codesourcery.com>
569
570 * iconvdata/cns11643.h (ucs4_to_cns11643): Adjust fall-through
571 comment wording.
572 * nis/nis_call.c (__do_niscall3): Likewise.
573
574 * catgets/gencat.c (normalize_line): Use braces around empty
575 'else' body.
576 * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
577 (STAP_PROBE0): Use do {} while (0) for do-nothing definition.
578 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE1): Likewise.
579 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE2): Likewise.
580 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE3): Likewise.
581 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE4): Likewise.
582 * libio/libio.h (_IO_funlockfile): Use ((void) 0) for do-nothing
583 definition.
584
585 * support/test-container.c (recursive_remove): Use FAIL_EXIT1 if
586 execlp returns.
587
588 2019-02-12 Wilco Dijkstra <wdijkstr@arm.com>
589
590 * benchtests/bench-strcasecmp.c (stupid_strcasecmp): Remove.
591 * benchtests/bench-strcasestr.c (stupid_strcasestr): Remove.
592 * benchtests/bench-strchr.c (stupid_strchr): Remove.
593 * benchtests/bench-strcmp.c (stupid_strcmp): Remove.
594 * benchtests/bench-strcspn.c (stupid_strcspn): Remove.
595 * benchtests/bench-strlen.c (builtin_strlen): Remove.
596 * benchtests/bench-strncasecmp.c (stupid_strncasecmp): Remove.
597 * benchtests/bench-strncmp.c (stupid_strncmp): Remove.
598 * benchtests/bench-strpbrk.c (stupid_strpbrk): Remove.
599 * benchtests/bench-strspn.c (stupid_strspn): Remove.
600 * benchtests/Makefile: Remove bench-bcopy.c and bench-bzero.c.
601 * benchtests/bench-bcopy.c: Delete file.
602 * benchtests/bench-bzero.c: Likewise.
603 * benchtests/bench-memccpy.c (stupid_memccpy): Remove.
604 (simple_memccpy): Remove.
605 (generic_memccpy): Add function.
606 * benchtests/bench-memcpy.c: (builtin_memcpy): Remove.
607 * benchtests/bench-memmove.c (simple_bcopy): Remove.
608 * benchtests/bench-mempcpy.c (simple_mempcpy): Remove.
609 (generic_mempcpy): Add new function.
610 * benchtests/bench-memset.c (simple_bzero): Remove.
611 (builtin_bzero): Remove.
612 (builtin_memset): Remove.
613 * benchtests/bench-rawmemchr.c (simple_rawmemchr): Remove.
614 (generic_rawmemchr): Add new function.
615
616 2019-02-12 Florian Weimer <fweimer@redhat.com>
617
618 * nss/getent.c (ahosts_keys_int): Include IPv6 scope ID in output.
619
620 2019-02-12 Adhemerval Zanella <adhemerval.zanella@linaro.org>
621
622 [BZ #24122]
623 * elf/Makefile (tests): Add tst-audit13.
624 (modules-names): Add tst-audit13mod1.
625 (tst-audit13.out, LDFLAGS-tst-audit13mod1.so, tst-audit13-ENV): New
626 rule.
627 * elf/tst-audit13.c: New file.
628 * elf/tst-audit13mod1.c: Likewise.
629
630 2019-02-12 Florian Weimer <fweimer@redhat.com>
631
632 [BZ #24122]
633 * elf/rtld.c (unload_audit_module): New function.
634 (report_audit_module_load_error): Likewise.
635 (load_audit_module): Likewise. Extracted from dl_main. Call
636 _dl_close if the laversion symbol cannot be found. Use early
637 returns for error handling. Add malloc error check. Check for a
638 zero return value from la_version. Remove spurious comment about
639 static TLS initialization. Remove useless casts.
640 (notify_audit_modules_of_loaded_object): New function. Extracted
641 from dl_main.
642 (load_audit_module): Likewise.
643 (dl_main): Call load_audit_modules.
644
645 2019-02-12 Joseph Myers <joseph@codesourcery.com>
646
647 * elf/dl-exception.c (_dl_exception_create_format): Add
648 fall-through comments.
649 * elf/ldconfig.c (parse_conf_include): Likewise.
650 * elf/rtld.c (print_statistics): Likewise.
651 * locale/programs/charmap.c (parse_charmap): Likewise.
652 * misc/mntent_r.c (__getmntent_r): Likewise.
653 * posix/wordexp.c (parse_arith): Likewise.
654 (parse_backtick): Likewise.
655 * resolv/ns_ttl.c (ns_parse_ttl): Likewise.
656 * sysdeps/x86/cpu-features.c (init_cpu_features): Likewise.
657 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
658
659 2019-02-11 Paul A. Clarke <pc@us.ibm.com>
660
661 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrtf):
662 Use float instead of double.
663
664 2019-02-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
665
666 * time/strftime_l.c: Fix a few whitespace arrangement inconsistencies.
667
668 2019-02-08 Joseph Myers <joseph@codesourcery.com>
669
670 * sysdeps/powerpc/bits/mathinline.h: Remove.
671
672 2019-02-08 Florian Weimer <fweimer@redhat.com>
673
674 math: Enable <bits/math-finite.h> sysdeps override, as used on ia64.
675 * math/bits/math-finite.h: Move to ...
676 * bits/math-finite.h: ... here.
677
678 2019-02-08 Florian Weimer <fweimer@redhat.com>
679
680 * sysdeps/generic/bits/unistd_ext.h: Move to ...
681 * bits/unistd_ext.h: here.
682
683 2019-02-08 Patsy Griffin Franklin <pfrankli@redhat.com>
684
685 [BZ #21915]
686 * nss/Makefile (test-container): Add tst-nss-files-hosts-long.
687 * nss/tst-nss-files-hosts-long.c: New file.
688 * nss/tst-nss-files-hosts-long.root: New directory.
689 * nss/tst-nss-files-hosts-long.root/etc: Likewise.
690 * nss/tst-nss-files-hosts-long.root/etc/hosts: New file.
691
692 2019-02-08 Florian Weimer <fweimer@redhat.com>
693
694 * include/bits/unistd_ext.h: Remove file.
695 * posix/bits/unistd_ext.h: Move to ...
696 * sysdeps/generic/bits/unistd_ext.h: ... here.
697
698 2019-02-08 Florian Weimer <fweimer@redhat.com>
699
700 * include/bits/unistd_ext.h: New file.
701
702 2019-02-08 TAMUKI Shoichi <tamuki@linet.gr.jp>
703
704 * time/tst-strftime2.c: Use array_length macros instead of magic
705 numbers.
706
707 2019-02-08 Florian Weimer <fweimer@redhat.com>
708
709 [BZ #24161]
710 * sysdeps/nptl/fork.h (__run_fork_handlers): Add multiple_threads
711 argument.
712 * nptl/register-atfork.c (__run_fork_handlers): Only perform
713 locking if the new do_locking argument is true.
714 * sysdeps/nptl/fork.c (__libc_fork): Pass multiple_threads to
715 __run_fork_handlers.
716
717 2019-02-08 Florian Weimer <fweimer@redhat.com>
718
719 [BZ #6399]
720 Linux: Add gettid system call wrapper.
721 * posix/Makefile (headers): Add bits/unistd_ext.h.
722 * posix/bits/unistd_ext.h: New file.
723 * posix/unistd.h: Include it.
724 * manual/process.texi (Process Identification): Document gettid.
725 * sysdeps/unix/sysv/linux/Makefile [subdir == misc] (tests): Add
726 tst-gettid, tst-gettid-kill.
727 (tst-gettid): Link with $(shared-thread-library).
728 * sysdeps/unix/sysv/linux/Version (GLIBC_2.30): Export gettid.
729 * sysdeps/unix/sysv/linux/bits/unistd_ext.h: New file.
730 * sysdeps/unix/sysv/linux/bits/syscalls.list (gettid): Add.
731 * sysdeps/unix/sysv/linux/bits/tst-gettid.c: New file.
732 * sysdeps/unix/sysv/linux/bits/tst-gettid-kill.c: Likewise.
733 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.30):
734 Add gettid.
735 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.30):
736 Likewise.
737 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.30): Likewise.
738 * sysdeps/unix/sysv/linux/csky/libc.abilist (GLIBC_2.30):
739 Likewise.
740 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.30):
741 Likewise.
742 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.30):
743 Likewise.
744 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.30):
745 Likewise.
746 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.30):
747 Likewise.
748 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.30):
749 Likewise.
750 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.30):
751 Likewise.
752 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
753 (GLIBC_2.30): Likewise.
754 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
755 (GLIBC_2.30): Likewise.
756 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
757 (GLIBC_2.30): Likewise.
758 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
759 (GLIBC_2.30): Likewise.
760 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.30):
761 Likewise.
762 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
763 (GLIBC_2.30): Likewise.
764 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
765 (GLIBC_2.30): Likewise.
766 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist
767 (GLIBC_2.30): Likewise.
768 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist
769 (GLIBC_2.30): Likewise.
770 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.30):
771 Likewise.
772 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.30):
773 Likewise.
774 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.30):
775 Likewise.
776 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.30): Likewise.
777 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.30):
778 Likewise.
779 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.30):
780 Likewise.
781 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.30):
782 Likewise.
783 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.30):
784 Likewise.
785 * sysdeps/unix/sysv/linux/tst-setgetname.c (gettid): Remove.
786
787 2019-02-07 Florian Weimer <fweimer@redhat.com>
788
789 * rt/clock-compat.c (COMPAT_REDIRECT): Turn librt forwarders into
790 compatibility symbols.
791
792 2019-02-07 Stefan Liebler <stli@linux.ibm.com>
793
794 [BZ #24180]
795 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
796 Add compiler barriers and comments.
797
798 2019-02-07 Florian Weimer <fweimer@redhat.com>
799
800 * include/array_length.h (array_length): Do not use a statement
801 expression and _Static_assert, so that array_length can be used at
802 file scope and as a constant expression.
803
804 2019-02-07 Florian Weimer <fweimer@redhat.com>
805
806 * support/xdlfcn.h (xdlmopen): Declare.
807 * support/xdlmopen.c: New file.
808 * support/Makefile (libsupport-routines): Add xdlmopen.
809
810 2019-02-06 Joseph Myers <joseph@codesourcery.com>
811
812 * elf/dl-load.h (_dl_postprocess_loadcmd): Use __always_inline
813 before return type, without separate inline.
814 * elf/dl-tunables.c (maybe_enable_malloc_check): Likewise.
815 * elf/dl-tunables.h (tunable_is_name): Likewise.
816 * malloc/malloc.c (do_set_trim_threshold): Likewise.
817 (do_set_top_pad): Likewise.
818 (do_set_mmap_threshold): Likewise.
819 (do_set_mmaps_max): Likewise.
820 (do_set_mallopt_check): Likewise.
821 (do_set_perturb_byte): Likewise.
822 (do_set_arena_test): Likewise.
823 (do_set_arena_max): Likewise.
824 (do_set_tcache_max): Likewise.
825 (do_set_tcache_count): Likewise.
826 (do_set_tcache_unsorted_limit): Likewise.
827 * nis/nis_subr.c (count_dots): Likewise.
828 * nptl/allocatestack.c (advise_stack_range): Likewise.
829 * sysdeps/ieee754/dbl-64/s_sin.c (do_cos): Likewise.
830 (do_sin): Likewise.
831 (reduce_sincos): Likewise.
832 (do_sincos): Likewise.
833 * sysdeps/unix/sysv/linux/x86/elision-conf.c
834 (do_set_elision_enable): Likewise.
835 (TUNABLE_CALLBACK_FNDECL): Likewise.
836
837 2019-02-06 Florian Weimer <fweimer@redhat.com>
838
839 * support/xdlfcn.c (xdlopen, xdlclose): Do not call dlerror.
840 (xdlsym): Use dlerror to detect a NULL symbol.
841
842 2019-02-06 Florian Weimer <fweimer@redhat.com>
843
844 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Do not include
845 <stap-probe.h>.
846 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
847
848 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
849
850 * libio/tst-bz24153.c (wide): Use wide char format specifier.
851
852 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
853
854 * sysdeps/s390/wmemcmp-vx.S: Add strong alias to
855 __wmemcmp and weak alias to wmemcmp.
856
857 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
858
859 [BZ #23403]
860 * nptl/allocatestack.c (allocate_stack): Align pointer pd for
861 TLS_TCB_AT_TP tls variant.
862 * nptl/tst-tls1.c: Migrate to support/test-driver.c.
863 Add alignment checks.
864 * support/Makefile (libsupport-routines): Add xposix_memalign and
865 xpthread_setstack.
866 * support/support.h: Add xposix_memalign.
867 * support/xthread.h: Add xpthread_attr_setstack.
868 * support/xposix_memalign.c: New File.
869 * support/xpthread_attr_setstack.c: Likewise.
870
871 2019-02-05 Florian Weimer <fweimer@redhat.com>
872
873 [BZ #24164]
874 arm: Use "nr" constraint for Systemtap probes, to avoid the
875 compiler using memory operands for constants, due to the "o"
876 alternative in the default "nor" constraint.
877 * include/stap-probe.h [USE_STAP_PROBE]: Include
878 <stap-probe-machine.h>
879 * sysdeps/generic/stap-probe-machine.h: New file.
880 * sysdeps/arm/stap-probe-machine.h: Likewise.
881
882 2019-02-04 Joseph Myers <joseph@codesourcery.com>
883
884 * malloc/malloc.c (tcache_get): Compare tcache->counts[tc_idx]
885 with 0, not tcache->entries[tc_idx].
886
887 * nscd/connections.c (reqinfo): Initialize SHUTDOWN element only
888 once.
889
890 2019-02-04 Andreas Schwab <schwab@suse.de>
891
892 [BZ #16976]
893 [BZ #17396]
894 * posix/fnmatch_loop.c (internal_fnmatch, internal_fnwmatch): When
895 looking up collating elements match against (wide) character
896 sequence instead of name. Correct alignment adjustment.
897 * posix/fnmatch.c: Don't include "../locale/elem-hash.h".
898 (WMEMCMP) [HANDLE_MULTIBYTE]: Define.
899 * posix/Makefile (tests): Add tst-fnmatch4 and tst-fnmatch5.
900 (LOCALES): Add cs_CZ.ISO-8859-2.
901 * posix/tst-fnmatch4.c: New file.
902 * posix/tst-fnmatch5.c: New file.
903 * include/wchar.h (__wmemcmp): Declare.
904 * wcsmbs/wmemcmp.c: Define __wmemcmp and add wmemcmp as weak alias.
905 * sysdeps/i386/i686/multiarch/wmemcmp.c: Likewise.
906 * sysdeps/x86_64/multiarch/wmemcmp.c: Likewise.
907 * sysdeps/s390/wmemcmp.c: Likewise.
908
909 2019-02-04 H.J. Lu <hongjiu.lu@intel.com>
910
911 [BZ #24155]
912 CVE-2019-7309
913 * NEWS: Updated for CVE-2019-7309.
914 * sysdeps/x86_64/memcmp.S: Use RDX_LP for size. Clear the
915 upper 32 bits of RDX register for x32. Use unsigned Jcc
916 instructions, instead of signed.
917 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcmp-2.
918 * sysdeps/x86_64/x32/tst-size_t-memcmp-2.c: New test.
919
920 2019-02-04 Florian Weimer <fweimer@redhat.com>
921
922 * posix/spawn.h (posix_spawn, posix_spawnp): Add __nonnull attribute.
923 (posix_spawnattr_init, posix_spawnattr_destroy): Likewise.
924 (posix_spawnattr_getsigdefault, posix_spawnattr_setsigdefault):
925 Likewise.
926 (posix_spawnattr_getsigmask, posix_spawnattr_setsigmask): Likewise.
927 (posix_spawnattr_getflags, posix_spawnattr_setflags): Likewise.
928 (posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Likewise.
929 (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy):
930 Likewise.
931 (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam):
932 Likewise.
933 (posix_spawn_file_actions_init, posix_spawn_file_actions_destroy):
934 Likewise.
935 (posix_spawn_file_actions_addopen): Likewise.
936 (posix_spawn_file_actions_addclose): Likewise.
937 (posix_spawn_file_actions_adddup2): Likewise.
938 (posix_spawn_file_actions_addchdir_np): Likewise. Add __restrict
939 qualifiers.
940 (posix_spawn_file_actions_addfchdir_np): Likewise.
941
942 2019-02-04 David Newall <glibc@davidnewall.com>
943
944 elf: Implement --preload option for the dynamic linker.
945 * elf/rtld.c (preloadarg): New variable.
946 (handle_preload_list): Pass through “where” argument to
947 do_preload.
948 (dl_main): Handle "--preload" and add second call to
949 handle_preload_list.
950 * elf/Makefile (tests-special): Add tst-rtld-preload.out.
951 (tst-rtld-preload-OBJS): Set variable.
952 (tst-rtld-preload.out): New target.
953 * elf/tst-rtld-preload.sh: New file.
954
955 2019-02-04 Matthew Malcomson <matthew.malcomson@arm.com>
956
957 * Makefile (testrun.sh): Exit in case of incorrect argument.
958
959 2019-02-04 Florian Weimer <fweimer@redhat.com>
960
961 * time/tzfile.c (__tzfile_read): Reorder suballocations to avoid
962 alignment gaps.
963
964 2019-02-03 Florian Weimer <fweimer@redhat.com>
965
966 * time/tzfile.c (__tzfile_read): Use struct alloc_buffer and its
967 implicit overflow checks.
968
969 2019-02-03 Aurelien Jarno <aurelien@aurel32.net>
970
971 * stdlib/isomac.c: Include <unistd.h>.
972
973 2019-02-03 Florian Weimer <fweimer@redhat.com>
974
975 * include/time.h (__tzfile_default): Use int, not long int, for
976 the GMT offsets.
977 * time/tzfile.c (struct ttinfo): Change type of the offset member
978 to int.
979 (__tzfile_read): Remove useless cast.
980 (__tzfile_default): Adjust prototype.
981 * time/tzset.c (tz_rule): Change type of the offset member to int.
982 (parse_offset): Change the type of the sign variable to int.
983
984 2019-02-03 Florian Weimer <fweimer@redhat.com>
985
986 [BZ #24153]
987 * debug/gets_chk.c (__gets_chk): Use stdin instead of _IO_stdin.
988 * libio/getchar.c (getchar): Likewise.
989 * libio/getchar_u.c (getchar_unlocked): Likewise.
990 * libio/getwchar.c (getwchar): Likewise.
991 * libio/getwchar_u.c (getwchar_unlocked): Likewise.
992 * libio/iogets.c (_IO_gets): Likewise.
993 * libio/vscanf.c (_IO_vscanf): Likewise.
994 * libio/vwscanf.c (__vwscanf): Likewise.
995 * libio/tst-bz24153.c: New file.
996 * libio/Makefile (tests): Add it.
997
998 2019-02-02 Florian Weimer <fweimer@redhat.com>
999
1000 [BZ #14829]
1001 * manual/resource.texi (Basic Scheduling Functions): Add
1002 portability note. Change process to task throughout the section.
1003 Remove incorrect comment about sched_yield as it affects
1004 tasks/threads, not entire processes.
1005 * sysdeps/unix/sysv/linux/bits/posix_opt.h
1006 (_POSIX_PRIORITY_SCHEDULING): Update comment.
1007
1008 2019-02-01 Joseph Myers <joseph@codesourcery.com>
1009
1010 * configure.ac (libc_cv_compiler_ok): Require GCC 6.2 or later.
1011 * configure: Regenerated.
1012 * manual/install.texi (Tools for Compilation): Update minimum GCC
1013 version.
1014 * INSTALL: Regenerated.
1015
1016 2019-02-01 Florian Weimer <fweimer@redhat.com>
1017
1018 * support/support_test_compare_string.c
1019 (support_test_compare_string): Use "string" in error message.
1020 * support/tst-test_compare_string.c (do_test): Adjust.
1021
1022 2019-02-01 Florian Weimer <fweimer@redhat.com>
1023
1024 * support/support_format_address_family.c
1025 (support_format_address_family): Handle AF_LOCAL, AF_UNSPEC.
1026
1027 2019-02-01 Florian Weimer <fweimer@redhat.com>
1028
1029 * manual/socket.texi (Internet Address Formats): Clarify the byte
1030 order of struct sockaddr_in, struct sockaddr_in6. Document
1031 sin6_flowinfo and sin6_scope_id.
1032
1033 2019-02-01 Wilco Dijkstra <wdijkstr@arm.com>
1034
1035 * sysdeps/posix/clock_getres.c (__clock_getres): Cleanup.
1036 * sysdeps/unix/clock_gettime.c (__clock_gettime): Cleanup.
1037 * sysdeps/unix/clock_settime.c (__clock_settime): Cleanup.
1038 * sysdeps/unix/sysv/linux/clock_getres.c (__clock_getres): Cleanup.
1039 * sysdeps/unix/sysv/linux/clock_gettime.c (__clock_gettime): Cleanup.
1040 * sysdeps/unix/sysv/linux/clock_settime.c (__clock_settime): Cleanup.
1041
1042 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1043
1044 * sysdeps/aarch64/memchr.S (__memchr): Rename to MEMCHR.
1045 [!MEMCHR](MEMCHR): Set to __memchr.
1046 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
1047 Add memchr_generic and memchr_nosimd.
1048 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
1049 (__libc_ifunc_impl_list): Add memchr ifuncs.
1050 * sysdeps/aarch64/multiarch/memchr.c: New file.
1051 * sysdeps/aarch64/multiarch/memchr_generic.S: Likewise.
1052 * sysdeps/aarch64/multiarch/memchr_nosimd.S: Likewise.
1053
1054 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1055
1056 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
1057 Add memset_emag.
1058 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
1059 (__libc_ifunc_impl_list): Add __memset_emag to memset ifunc.
1060 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc):
1061 Add IS_EMAG check for ifunc dispatch.
1062 * sysdeps/aarch64/multiarch/memset_base64.S: New file.
1063 * sysdeps/aarch64/multiarch/memset_emag.S: New file.
1064
1065 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1066
1067 * manual/tunables.texi (Tunable glibc.cpu.name): Add emag.
1068 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
1069 Add emag.
1070 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_EMAG):
1071 New macro.
1072
1073 2019-02-01 Stefan Liebler <stli@linux.ibm.com>
1074
1075 * posix/tst-spawn do_test(): Move waitpid before posix_spawn.
1076
1077 2019-01-31 Vineet Gupta <vgupta@synopsys.com>
1078
1079 * sysdeps/unix/make-syscalls.sh: Fix comment referencing
1080 syscall-template file.
1081
1082 2019-01-31 Carlos O'Donell <carlos@redhat.com>
1083 Torvald Riegel <triegel@redhat.com>
1084 Rik Prohaska <prohaska7@gmail.com>
1085
1086 [BZ# 23844]
1087 * nptl/Makefile (tests): Add tst-rwlock-tryrdlock-stall, and
1088 tst-rwlock-trywrlock-stall.
1089 * nptl/pthread_rwlock_tryrdlock.c (__pthread_rwlock_tryrdlock):
1090 Wake waiters if PTHREAD_RWLOCK_FUTEX_USED is set.
1091 * nptl/pthread_rwlock_trywrlock.c (__pthread_rwlock_trywrlock):
1092 Set __wrphase_fute to 1 only if we started the write phase.
1093 * nptl/tst-rwlock-tryrdlock-stall.c: New file.
1094 * nptl/tst-rwlock-trywrlock-stall.c: New file.
1095 * support/Makefile (libsupport-routines): Add xpthread_rwlock_destroy.
1096 * support/xpthread_rwlock_destroy.c: New file.
1097 * support/xthread.h: Declare xpthread_rwlock_destroy.
1098
1099 2019-02-01 Joseph Myers <joseph@codesourcery.com>
1100
1101 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
1102 version to 4.0.2.
1103
1104 2019-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
1105
1106 [BZ #24051]
1107 * libio/ioputs.c (_IO_puts): Use stdout instead of _IO_stdout.
1108 * libio/fileops.c (_IO_new_file_underflow): Likewise
1109 * libio/wfileops.c (_IO_wfile_underflow): Likewise
1110 * libio/putchar.c (putchar): Likewise.
1111 * libio/putchar_u.c (putchar_unlocked): Likewise.
1112 * libio/putwchar.c (putchar): Likewise.
1113 * libio/putwchar_u.c (putwchar_unlocked): Likewise.
1114 * libio/tst-bz24051.c: New test.
1115 * libio/Makefile (tests): Add tst-bz24051
1116
1117 2019-01-31 Paul Eggert <eggert@cs.ucla.edu>
1118
1119 regex: fix read overrun [BZ #24114]
1120 Problem found by AddressSanitizer, reported by Hongxu Chen in:
1121 https://debbugs.gnu.org/34140
1122 * posix/regexec.c (proceed_next_node):
1123 Do not read past end of input buffer.
1124
1125 2019-01-31 Florian Weimer <fweimer@redhat.com>
1126
1127 [BZ #24059]
1128 * nss/nss_files/files-alias.c (get_next_alias): Handle
1129 continuation line without newline at the end.
1130 * nss/tst-nss-files-alias-truncated.c: New file.
1131 * nss/Makefile [$(build-shared)] (tests): Add
1132 tst-nss-files-alias-truncated.
1133 (tst-nss-files-alias-truncated): Link with libnss_files.so.
1134 * support/namespace.h (struct support_chroot_configuration): Add
1135 aliases member.
1136 (struct support_chroot): Add path_aliases member.
1137 * support/support_chroot.c (support_chroot_create): Handle
1138 aliases.
1139 (support_chroot_free): Free path_aliases.
1140
1141 2019-01-31 Siddhesh Poyarekar <siddhesh@sourceware.org>
1142
1143 * version.h (RELEASE): Set to "development".
1144 (VERSION): Set to "2.29.9000".
1145 * NEWS: Add section for 2.30.
1146
1147 * version.h (RELEASE): Set to "stable".
1148 (VERSION): Set to "2.29".
1149 * include/features.h (__GLIBC_MINOR__): Set to 2.29.
1150
1151 * NEWS: Add the list of bugs fixed in 2.29.
1152 * manual/contrib.texi: Update contributors list with some more
1153 names.
1154 * manual/install.texi: Update latest versions of packages
1155 tested.
1156 * INSTALL: Regenerated.
1157
1158 2019-01-25 Siddhesh Poyarekar <siddhesh@sourceware.org>
1159
1160 * po/be.po: Update translations.
1161 * po/bg.po: Likewise.
1162 * po/ca.po: Likewise.
1163 * po/cs.po: Likewise.
1164 * po/da.po: Likewise.
1165 * po/de.po: Likewise.
1166 * po/el.po: Likewise.
1167 * po/eo.po: Likewise.
1168 * po/es.po: Likewise.
1169 * po/fi.po: Likewise.
1170 * po/fr.po: Likewise.
1171 * po/gl.po: Likewise.
1172 * po/hr.po: Likewise.
1173 * po/hu.po: Likewise.
1174 * po/ia.po: Likewise.
1175 * po/id.po: Likewise.
1176 * po/it.po: Likewise.
1177 * po/ja.po: Likewise.
1178 * po/ko.po: Likewise.
1179 * po/lt.po: Likewise.
1180 * po/nb.po: Likewise.
1181 * po/nl.po: Likewise.
1182 * po/pl.po: Likewise.
1183 * po/pt_BR.po: Likewise.
1184 * po/ru.po: Likewise.
1185 * po/rw.po: Likewise.
1186 * po/sk.po: Likewise.
1187 * po/sl.po: Likewise.
1188 * po/sv.po: Likewise.
1189 * po/tr.po: Likewise.
1190 * po/uk.po: Likewise.
1191 * po/vi.po: Likewise.
1192 * po/zh_CN.po: Likewise.
1193 * po/zh_TW.po: Likewise.
1194
1195 2019-01-24 Uroš Bizjak <ubizjak@gmail.com>
1196
1197 [BZ #24130]
1198 * sysdeps/alpha/remqu.S (__remqu): Add missing restore
1199 of $f3 register on $y_is_neg path.
1200
1201 2019-01-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
1202
1203 [BZ #24110]
1204 * hurd/hurdsig.c (_hurd_thread_sigstate): Set SS_DISABLE in
1205 sigaltstack.ss_flags.
1206
1207 2019-01-24 TAMUKI Shoichi <tamuki@linet.gr.jp>
1208
1209 [BZ #23758]
1210 * manual/time.texi (strftime): Document "%Ey".
1211 * time/strftime_l.c (__strftime_internal): Set the default width
1212 padding with zero of "%Ey" to 2.
1213
1214 [BZ #24096]
1215 * manual/time.texi (strftime): Document "%EC" and "%EY".
1216 * time/Makefile (tests): Add tst-strftime2.
1217 (LOCALES): Add ja_JP.UTF-8, lo_LA.UTF-8, and th_TH.UTF-8.
1218 * time/strftime_l.c (__strftime_internal): Add argument yr_spec to
1219 override padding for "%Ey".
1220 If an optional flag ('_' or '-') is specified to "%EY", interpret the
1221 "%Ey" in the subformat as if decorated with that flag.
1222 * time/tst-strftime2.c: New file.
1223
1224 2019-01-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1225
1226 * support/xsigstack.c (MAP_NORESERVE, MAP_STACK): Define if they
1227 are not defined.
1228
1229 [BZ #24122]
1230 * elf/Makefile (tests): Add tst-audit13.
1231 (modules-names): Add tst-audit13mod1.
1232 (tst-audit13.out, LDFLAGS-tst-audit13mod1.so, tst-audit13-ENV): New
1233 rule.
1234 * elf/rtld.c (dl_main): Handle invalid audit module version.
1235 * elf/tst-audit13.c: New file.
1236 * elf/tst-audit13mod1.c: Likewise.
1237
1238 2019-01-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
1239
1240 * sysdeps/mach/hurd/faccessat.c (__faccessat_common): Check for errors
1241 returned by __hurd_at_flags.
1242 * hurd/lookup-at.c (__file_name_lookup_at): When at_flags contains
1243 AT_EMPTY_PATH, call __dir_lookup and __hurd_file_name_lookup_retry
1244 directly instead of __hurd_file_name_lookup.
1245
1246 2019-01-21 Joseph Myers <joseph@codesourcery.com>
1247
1248 * scripts/build-many-glibcs.py (Context.checkout): Default
1249 binutils version to 2.32 branch.
1250
1251 2019-01-21 Florian Weimer <fweimer@redhat.com>
1252
1253 [BZ #20018]
1254 CVE-2016-10739
1255 resolv: Reject trailing characters in host names
1256 * include/arpa/inet.h (__inet_aton_exact): Declare.
1257 (inet_aton): Remove hidden prototype. No longer used internally.
1258 * nscd/gai.c (__inet_aton): Do not define.
1259 * nscd/gethstbynm3_r.c (__inet_aton): Likewise.
1260 * nss/digits_dots.c (__inet_aton): Likewise.
1261 (__nss_hostname_digits_dots_context): Call __inet_aton_exact.
1262 * resolv/Makefile (tests-internal): Add tst-inet_aton_exact.
1263 (tests): Add tst-resolv-nondecimal, tst-resolv-trailing.
1264 (tst-resolv-nondecimal): Link with libresolv.so and libpthread.
1265 (tst-resolv-trailing): Likewise.
1266 * resolv/Versions (GLIBC_PRIVATE): Export __inet_aton_exact from
1267 libc.
1268 * resolv/inet_addr.c (inet_aton_end): Remame from __inet_aton.
1269 Make static. Add endp parameter.
1270 (__inet_aton_exact): New function.
1271 (__inet_aton_ignore_trailing): New function, aliased to inet_aton.
1272 (__inet_addr): Call inet_aton_end.
1273 * resolv/res_init.c (res_vinit_1): Truncate nameserver for IPv4,
1274 not just IPv6. Call __inet_aton_exact.
1275 * resolv/tst-aton.c: Switch to <support/test-driver.c>.
1276 (tests): Make const. Add additional test cases with trailing
1277 characters.
1278 (do_test): Use array_length.
1279 * resolv/tst-inet_aton_exact.c: New file.
1280 * resolv/tst-resolv-trailing.c: Likewise.
1281 * resolv/tst-resolv-nondecimal.c: Likewise.
1282 * sysdeps/posix/getaddrinfo.c (gaih_inet): Call __inet_aton_exact.
1283
1284 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1285
1286 [BZ# 24097]
1287 CVE-2019-6488
1288 * sysdeps/x86_64/multiarch/strlen-avx2.S: Use RSI_LP for length.
1289 Clear the upper 32 bits of RSI register.
1290 * sysdeps/x86_64/strlen.S: Use RSI_LP for length.
1291 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strnlen
1292 and tst-size_t-wcsnlen.
1293 * sysdeps/x86_64/x32/tst-size_t-strnlen.c: New file.
1294 * sysdeps/x86_64/x32/tst-size_t-wcsnlen.c: Likewise.
1295
1296 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1297
1298 [BZ# 24097]
1299 CVE-2019-6488
1300 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Use RDX_LP for length.
1301 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
1302 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
1303 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncpy.
1304 * sysdeps/x86_64/x32/tst-size_t-strncpy.c: New file.
1305
1306 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1307
1308 [BZ# 24097]
1309 CVE-2019-6488
1310 * sysdeps/x86_64/multiarch/strcmp-avx2.S: Use RDX_LP for length.
1311 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
1312 * sysdeps/x86_64/strcmp.S: Likewise.
1313 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncasecmp,
1314 tst-size_t-strncmp and tst-size_t-wcsncmp.
1315 * sysdeps/x86_64/x32/tst-size_t-strncasecmp.c: New file.
1316 * sysdeps/x86_64/x32/tst-size_t-strncmp.c: Likewise.
1317 * sysdeps/x86_64/x32/tst-size_t-wcsncmp.c: Likewise.
1318
1319 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1320
1321 [BZ# 24097]
1322 CVE-2019-6488
1323 * sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S: Use
1324 RDX_LP for length. Clear the upper 32 bits of RDX register.
1325 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S: Likewise.
1326 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-wmemset.
1327 * sysdeps/x86_64/x32/tst-size_t-memset.c: New file.
1328 * sysdeps/x86_64/x32/tst-size_t-wmemset.c: Likewise.
1329
1330 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1331
1332 [BZ# 24097]
1333 CVE-2019-6488
1334 * sysdeps/x86_64/memrchr.S: Use RDX_LP for length.
1335 * sysdeps/x86_64/multiarch/memrchr-avx2.S: Likewise.
1336 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memrchr.
1337 * sysdeps/x86_64/x32/tst-size_t-memrchr.c: New file.
1338
1339 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1340
1341 [BZ# 24097]
1342 CVE-2019-6488
1343 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Use RDX_LP for
1344 length. Clear the upper 32 bits of RDX register.
1345 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
1346 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
1347 Likewise.
1348 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:
1349 Likewise.
1350 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcpy.
1351 tst-size_t-wmemchr.
1352 * sysdeps/x86_64/x32/tst-size_t-memcpy.c: New file.
1353
1354 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1355
1356 [BZ# 24097]
1357 CVE-2019-6488
1358 * sysdeps/x86_64/multiarch/memcmp-avx2-movbe.S: Use RDX_LP for
1359 length. Clear the upper 32 bits of RDX register.
1360 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
1361 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
1362 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcmp and
1363 tst-size_t-wmemcmp.
1364 * sysdeps/x86_64/x32/tst-size_t-memcmp.c: New file.
1365 * sysdeps/x86_64/x32/tst-size_t-wmemcmp.c: Likewise.
1366
1367 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1368
1369 [BZ# 24097]
1370 CVE-2019-6488
1371 * sysdeps/x86_64/memchr.S: Use RDX_LP for length. Clear the
1372 upper 32 bits of RDX register.
1373 * sysdeps/x86_64/multiarch/memchr-avx2.S: Likewise.
1374 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memchr and
1375 tst-size_t-wmemchr.
1376 * sysdeps/x86_64/x32/test-size_t.h: New file.
1377 * sysdeps/x86_64/x32/tst-size_t-memchr.c: Likewise.
1378 * sysdeps/x86_64/x32/tst-size_t-wmemchr.c: Likewise.
1379
1380 2019-01-18 Florian Weimer <fweimer@redhat.com>
1381
1382 [BZ #24112]
1383 resolv: Do not send queries for non-host-names in nss_dns.
1384 * resolv/nss_dns/dns-host.c (check_name): New function.
1385 (_nss_dns_gethostbyname2_r): Use it.
1386 (_nss_dns_gethostbyname_r): Likewise.
1387 (_nss_dns_gethostbyname4_r): Likewise.
1388
1389 2019-01-21 Florian Weimer <fweimer@redhat.com>
1390
1391 * resolv/inet_addr.c: Reformat to GNU style.
1392 (__inet_addr, __inet_aton): Update comment.
1393
1394 2019-01-18 Florian Weimer <fweimer@redhat.com>
1395
1396 malloc: Revert commit 6923f6db1e688dedcf3a6556da76e0bf24a41872
1397 ("malloc: Use current (C11-style) atomics for fastbin access").
1398 This commit introduces a substantial performance regression on
1399 POWER and Aarch64.
1400 * malloc/malloc.c (fastbin_push_entry, fastbin_pop_entry): Remove.
1401 (REMOVE_FB): Define.
1402 (_int_malloc): Use it and reindent.
1403 (_int_free): Use CAS loop with
1404 catomic_compare_and_exchange_val_rel.
1405 (malloc_consolidate): Use atomic_exchange_acq.
1406
1407
1408 2019-01-18 H.J. Lu <hongjiu.lu@intel.com>
1409
1410 * signal/Makefile (LDFLAGS-tst-minsigstksz-1): New. Set to
1411 -Wl,-z,now.
1412 (LDFLAGS-tst-minsigstksz-2): Likewise.
1413 (LDFLAGS-tst-minsigstksz-3): Likewise.
1414 (LDFLAGS-tst-minsigstksz-3a): Likewise.
1415 (LDFLAGS-tst-minsigstksz-4): Likewise.
1416
1417 2019-01-18 TAMUKI Shoichi <tamuki@linet.gr.jp>
1418
1419 * manual/time.texi (strftime): Fix the wording to "alternative" rather
1420 than "alternate".
1421
1422 2019-01-16 Paul A. Clarke <pc@us.ibm.com>
1423
1424 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Fix #ifdef.
1425
1426 2019-01-16 Zack Weinberg <zackw@panix.com>
1427
1428 * support/xsignal.h (xalloc_sigstack, xfree_sigstack)
1429 (xget_sigstack_location): New test support functions.
1430 * support/xsigstack.c: New file, implementing them.
1431 * support/tst-xsigstack.c: New test for them.
1432 * support/Makefile: Update.
1433
1434 * signal/tst-minsigstksz-1.c
1435 * signal/tst-minsigstksz-2.c
1436 * signal/tst-minsigstksz-3.c
1437 * signal/tst-minsigstksz-3a.c
1438 * signal/tst-minsigstksz-4.c: New tests.
1439 * signal/Makefile: Run them.
1440
1441 2019-01-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
1442
1443 * po/libc.pot: Regenerate.
1444
1445 2019-01-15 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
1446
1447 * math/libm-test-fma.inc (fma_test_data): Set
1448 XFAIL_ROUNDING_IBM128_LIBGCC to more tests.
1449
1450 2019-01-15 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
1451
1452 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c:
1453 (do_test): Changed __vector __int128_t to __vector unsigned int.
1454
1455 2019-01-14 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
1456
1457 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1458 strcat-avx2, strncat-avx2, strcpy-avx2, strncpy-avx2,
1459 stpcpy-avx2 and stpncpy-avx2.
1460 * sysdeps/x86_64/multiarch/ifunc-impl-list.c:
1461 (__libc_ifunc_impl_list): Add tests for __strcat_avx2,
1462 __strncat_avx2, __strcpy_avx2, __strncpy_avx2, __stpcpy_avx2
1463 and __stpncpy_avx2.
1464 * sysdeps/x86_64/multiarch/{ifunc-unaligned-ssse3.h =>
1465 ifunc-strcpy.h}: rename header for a more generic name.
1466 * sysdeps/x86_64/multiarch/ifunc-strcpy.h:
1467 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
1468 AVX unaligned load is fast and vzeroupper is preferred.
1469 * sysdeps/x86_64/multiarch/stpcpy-avx2.S: New file.
1470 * sysdeps/x86_64/multiarch/stpncpy-avx2.S: Likewise.
1471 * sysdeps/x86_64/multiarch/strcat-avx2.S: Likewise.
1472 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Likewise.
1473 * sysdeps/x86_64/multiarch/strncat-avx2.S: Likewise.
1474 * sysdeps/x86_64/multiarch/strncpy-avx2.S: Likewise.
1475
1476 2019-01-12 Dmitry V. Levin <ldv@altlinux.org>
1477
1478 * argp/argp-help.c: Fix typo in comment.
1479 * misc/sys/cdefs.h: Likewise.
1480 * posix/regexec.c (sift_states_iter_mb): Likewise.
1481 * socket/sockatmark.c: Likewise.
1482 * socket/sys/socket.h: Likewise.
1483 * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
1484 * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
1485 * sysdeps/ia64/fpu/s_cosl.S: Likewise.
1486 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
1487 * sysdeps/unix/sockatmark.c: Likewise.
1488 * time/strptime_l.c: Likewise.
1489
1490 2019-01-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
1491
1492 * time/strftime_l.c (__strftime_internal): Use "L_" macros, also add a
1493 missing space after the cast of "_NL_CURRENT".
1494
1495 2019-01-11 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
1496
1497 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (vscr_t): Added
1498 ifdef to fix read of VSCR.
1499 * sysdeps/powerpc/powerpc64/Makefile [$subdir == stdlib]: Add
1500 tst-ucontext-ppc64-vscr.c to test list.
1501 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c: New test file.
1502
1503 2019-01-10 Andreas K. Hüttel <dilfridge@gentoo.org>
1504
1505 * resolv/tst-resolv-ai_idn-common.c (response): Avoid switch
1506 fall-through.
1507
1508 2019-01-09 Jim Wilson <jimw@sifive.com>
1509
1510 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
1511
1512 2019-01-09 Wilco Dijkstra <wdijkstr@arm.com>
1513
1514 * manual/tunables.texi (glibc.cpu.name): Add ares tunable.
1515 * sysdeps/aarch64/multiarch/memcpy.c (__libc_memcpy): Use
1516 __memcpy_falkor for ares.
1517 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_ARES):
1518 Add new define.
1519 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
1520 Add ares cpu.
1521
1522 2019-01-07 H.J. Lu <hongjiu.lu@intel.com>
1523
1524 [BZ #24066]
1525 * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if
1526 4_FP_W_TYPEs are used for IEEE quad precision.
1527 * soft-fp/extendhftf2.c: Likewise.
1528 * soft-fp/extendsftf2.c: Likewise.
1529 * soft-fp/extendxftf2.c: Likewise.
1530 * soft-fp/trunctfdf2.c: Likewise.
1531 * soft-fp/trunctfhf2.c: Likewise.
1532 * soft-fp/trunctfsf2.c: Likewise.
1533 * soft-fp/trunctfxf2.c: Likewise.
1534 * sysdeps/alpha/ots_cvttx.c: Likewise.
1535 * sysdeps/alpha/ots_cvtxt.c: Likewise.
1536 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
1537 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
1538 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
1539 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
1540 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
1541 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
1542 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
1543 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
1544 * sysdeps/sparc/sparc32/q_dtoq.c: Likewise.
1545 * sysdeps/sparc/sparc32/q_qtod.c: Likewise.
1546 * sysdeps/sparc/sparc32/q_qtos.c: Likewise.
1547 * sysdeps/sparc/sparc32/q_stoq.c: Likewise.
1548 * sysdeps/sparc/sparc64/qp_dtoq.c: Likewise.
1549 * sysdeps/sparc/sparc64/qp_qtod.c: Likewise.
1550 * sysdeps/sparc/sparc64/qp_qtos.c: Likewise.
1551 * sysdeps/sparc/sparc64/qp_stoq.c: Likewise.
1552
1553 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
1554
1555 [BZ #24024]
1556 * Makeconfig: Build libm with -fno-math-errno but build the remaining
1557 code with -fmath-errno.
1558 * string/Makefile [$(build-shared)] (tests): Add test-strerror-errno.
1559 [$(build-shared)] (LDLIBS-test-strerror-errno): New variable.
1560 * string/test-strerror-errno.c: New file.
1561
1562 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
1563
1564 [BZ #24046]
1565 * localedata/locales/en_US (date_fmt): Add, set to
1566 "%a %d %b %Y %r %Z".
1567
1568 2019-01-07 Florian Weimer <fweimer@redhat.com>
1569
1570 [BZ #24063]
1571 * manual/arith.texi (Math Error Reporting): Use @code{errno}
1572 instead of @var{errno}.
1573 (Parsing of Integers): Likewise.
1574 (Parsing of Floats): Likewise.
1575 * manual/filesys.texi (Working with Directory Trees): Likewise.
1576 (Temporary Files): Likewise.
1577 * manual/job.texi (Terminal Access Functions): Likewise.
1578 * manual/llio.texi (Synchronizing I/O): Likewise.
1579 * manual/math.texi (SVID Random): Likewise.
1580 * manual/message.texi (The catgets Functions): Likewise.
1581 (Translation with gettext): Likewise.
1582 (Locating gettext catalog): Likewise.
1583 (Charset conversion in gettext): Likewise.
1584 * manual/nss.texi (NSS Module Function Internals): Likewise.
1585 * manual/search.texi (Hash Search Function): Likewise.
1586 * manual/setjmp.texi (System V contexts): Likewise.
1587 * manual/time.texi (Sleeping): Likewise.
1588 * manual/users.texi (Lookup User): Likewise.
1589 (Lookup Group): Likewise.
1590
1591 2019-01-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1592
1593 * posix/tst-spawn.c (do_test): Extend spargv to new required size and
1594 fix typo.
1595
1596 2019-01-04 Martin Jansa <Martin.Jansa@gmail.com>
1597
1598 [BZ #19444]
1599 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Use
1600 __builtin_unreachable for default case in switch.
1601 (__ieee754_yn): Likewise.
1602 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
1603 (__ieee754_ynl): Likewise.
1604 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
1605 (__ieee754_ynl): Likewise.
1606 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
1607 (__ieee754_ynl): Likewise.
1608
1609 2019-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
1610
1611 * manual/maint.texi: Use @{ and @}.
1612
1613 2019-01-04 Florian Weimer <fweimer@redhat.com>
1614
1615 * sysdeps/unix/sysv/linux/tst-ttyname.c (adjust_file_limit): New
1616 function.
1617 (do_in_chroot_1): Call it.
1618 (run_chroot_tests):
1619 Improve error reporting in case it is not possible to create a
1620 collision for the PTY name required by the test.
1621
1622 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1623
1624 * nptl/pthread_join_common.c (__pthread_timedjoin_ex): Use
1625 lll_wait_tid with timeout.
1626 * nptl/sem_wait.c (__old_sem_wait): Use lll_futex_wait_cancel.
1627 * sysdeps/nptl/aio_misc.h (AIO_MISC_WAIT): Use
1628 futex_reltimed_wait_cancelable for cancelabla mode.
1629 * sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Likewise.
1630 * sysdeps/posix/open64.c (__libc_open64): Do not call cancelation
1631 macros.
1632 * sysdeps/posix/sigwait.c (__sigwait): Likewise.
1633 * sysdeps/posix/waitid.c (__sigwait): Likewise.
1634 * sysdeps/unix/sysdep.h (__SYSCALL_CANCEL_CALL,
1635 SYSCALL_CANCEL_NCS): New macro.
1636 * sysdeps/nptl/lowlevellock.h (lll_wait_tid): Add timeout argument.
1637 (lll_timedwait_tid): Remove macro.
1638 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_wait_tid):
1639 Likewise.
1640 (lll_timedwait_tid): Likewise.
1641 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h (lll_wait_tid):
1642 Likewise.
1643 (lll_timedwait_tid): Likewise.
1644 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_wait_tid):
1645 Likewise.
1646 (lll_timedwait_tid): Likewise.
1647 * sysdeps/unix/sysv/linux/clock_nanosleep.c (__clock_nanosleep):
1648 Use INTERNAL_SYSCALL_CANCEL.
1649 * sysdeps/unix/sysv/linux/futex-internal.h
1650 (futex_reltimed_wait_cancelable): Use LIBC_CANCEL_{ASYNC,RESET}
1651 instead of __pthread_{enable,disable}_asynccancel.
1652 * sysdeps/unix/sysv/linux/lowlevellock-futex.h
1653 (lll_futex_wait_cancel): New macro.
1654
1655 * sysdeps/i386/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
1656 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
1657
1658 * sysdeps/x86_64/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
1659 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
1660
1661 * debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
1662 in backtrace analysis.
1663 * nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
1664 side-effects.
1665 (tf_send): Likewise.
1666
1667 * io/creat.c (LIBC_CANCEL_HANDLED): Remove macro.
1668 * io/ppoll.c (LIBC_CANCEL_HANDLED): Likewise.
1669 * misc/pselect.c (LIBC_CANCEL_HANDLED): Likewise.
1670 * nptl/pthreadP.h (LIBC_CANCEL_HANDLED): Likewise.
1671 * sysdeps/generic/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
1672 * sysdeps/mach/hurd/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
1673 * sysdeps/posix/pause.c (LIBC_CANCEL_HANDLED): Likewise.
1674 * sysdeps/posix/sigpause.c (LIBC_CANCEL_HANDLED): Likewise.
1675 * sysdeps/unix/sysv/linux/creat.c (LIBC_CANCEL_HANDLED): Likewise.
1676 * sysdeps/unix/sysv/linux/creat64.c (LIBC_CANCEL_HANDLED): Likewise.
1677 * sysdeps/unix/sysv/linux/sigwait.c (LIBC_CANCEL_HANDLED): Likewise.
1678 * sysdeps/unix/sysv/linux/sigwaitinfo.c (LIBC_CANCEL_HANDLED):
1679 Likewise.
1680 * nptl/Makefile [$(run-built-tests) = yes] (tests-special): Remove
1681 tst-cancel-wrappers.sh.
1682 (generated): Remove tst-cancel-wrappers.out.
1683 (tst-cancel-wrappers.out): Remove rule.
1684 * nptl/tst-cancel-wrappers.sh: Remove file.
1685
1686 2019-01-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
1687
1688 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h: Add comment.
1689 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
1690 Update.
1691
1692 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1693
1694 [BZ #23640]
1695 * posix/tst-spawn.c (do_prepare, handle_restart, do_test): Add
1696 posix_spawn_file_actions_adddup2 test to check O_CLOCEXEC reset.
1697 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Add
1698 close-on-exec reset for adddup2 file action.
1699 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
1700
1701 2019-01-03 Zack Weinberg <zackw@panix.com>
1702
1703 * include/features.h (__GLIBC_USE_DEPRECATED_SCANF): New __GLIBC_USE
1704 parameter. Only use deprecated scanf when __USE_GNU is defined
1705 and __STDC_VERSION__ is less than 199901L or __cplusplus is less
1706 than 201103L, whichever is relevant for the language being compiled.
1707
1708 * libio/stdio.h, libio/bits/stdio-ldbl.h: Decide whether to redirect
1709 scanf, fscanf, sscanf, vscanf, vfscanf, and vsscanf to their
1710 __isoc99_ variants based only on __GLIBC_USE (DEPRECATED_SCANF).
1711 * wcsmbs/wchar.h: wcsmbs/bits/wchar-ldbl.h: Likewise for
1712 wscanf, fwscanf, swscanf, vwscanf, vfwscanf, and vswscanf.
1713
1714 * libio/iovsscanf.c
1715 * libio/fwscanf.c
1716 * libio/iovswscanf.c
1717 * libio/swscanf.c
1718 * libio/vscanf.c
1719 * libio/vwscanf.c
1720 * libio/wscanf.c
1721 * stdio-common/fscanf.c
1722 * stdio-common/scanf.c
1723 * stdio-common/vfscanf.c
1724 * stdio-common/vfwscanf.c
1725 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
1726 * sysdeps/ieee754/ldbl-opt/nldbl-fscanf.c
1727 * sysdeps/ieee754/ldbl-opt/nldbl-fwscanf.c
1728 * sysdeps/ieee754/ldbl-opt/nldbl-iovfscanf.c
1729 * sysdeps/ieee754/ldbl-opt/nldbl-scanf.c
1730 * sysdeps/ieee754/ldbl-opt/nldbl-sscanf.c
1731 * sysdeps/ieee754/ldbl-opt/nldbl-swscanf.c
1732 * sysdeps/ieee754/ldbl-opt/nldbl-vfscanf.c
1733 * sysdeps/ieee754/ldbl-opt/nldbl-vfwscanf.c
1734 * sysdeps/ieee754/ldbl-opt/nldbl-vscanf.c
1735 * sysdeps/ieee754/ldbl-opt/nldbl-vsscanf.c
1736 * sysdeps/ieee754/ldbl-opt/nldbl-vswscanf.c
1737 * sysdeps/ieee754/ldbl-opt/nldbl-vwscanf.c
1738 * sysdeps/ieee754/ldbl-opt/nldbl-wscanf.c:
1739 Override __GLIBC_USE_DEPRECATED_SCANF to 1.
1740
1741 * stdio-common/sscanf.c: Likewise. Remove ldbl_hidden_def for __sscanf.
1742 * stdio-common/isoc99_sscanf.c: Add libc_hidden_def for __isoc99_sscanf.
1743 * include/stdio.h: Provide libc_hidden_proto for __isoc99_sscanf,
1744 not sscanf.
1745 [!__GLIBC_USE (DEPRECATED_SCANF)]: Define sscanf as __isoc99_scanf
1746 with a preprocessor macro.
1747
1748 * stdio-common/bug21.c, stdio-common/scanf14.c:
1749 Use %ms instead of %as, %mS instead of %aS, %m[] instead of %a[];
1750 remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
1751 * stdio-common/scanf16.c: Likewise. Add __attribute__ ((format (scanf)))
1752 to xscanf, xfscanf, xsscanf.
1753
1754 * stdio-common/scanf14a.c: New copy of scanf14.c which still uses
1755 %as, %aS, %a[]. Remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
1756 * stdio-common/scanf16a.c: New copy of scanf16.c which still uses
1757 %as, %aS, %a[]. Add __attribute__ ((format (scanf))) to xscanf,
1758 xfscanf, xsscanf.
1759 * stdio-common/scanf15.c, stdio-common/scanf17.c: No need to
1760 override feature selection macros or provide definitions of u_char etc.
1761 * stdio-common/Makefile (tests): Add scanf14a and scanf16a.
1762 (CFLAGS-scanf15.c, CFLAGS-scanf17.c): Remove.
1763 (CFLAGS-scanf14a.c, CFLAGS-scanf16a.c): New. Compile these files
1764 with -std=gnu89.
1765
1766 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1767
1768 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1769 bits/termios-misc.h.
1770 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Remove file.
1771 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1772 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1773 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1774 * sysdeps/unix/sysv/linux/bits/termios-misc.h: New file.
1775 * sysdeps/unix/sysv/linux/bits/termios.h: Include termios-misc.h.
1776
1777 * sysdeps/unix/sysv/linux/powerpc/bits/termios-misc.h: New file.
1778 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
1779 (struct sgtty, struct tchars, struct ltchars, TIOCPKT_DATA,
1780 TIOCPKT_FLUSHREAD, TIOCPKT_FLUSHWRITE, TIOCPKT_STOP, TIOCPKT_START,
1781 TIOCPKT_NOSTOP, TIOCPKT_DOSTOP, _VINTR, _VQUIT, _VERASE, _VKILL,
1782 _VEOF, _VMIN, _VEOL, _VTIME, _VEOL2, _VSWTC): Move to
1783 termios-misc.h.
1784 * sysdeps/unix/sysv/linux/powerpc/Makefile [$subdir == misc]
1785 (sysdep_headers): Add termios-misc.h.
1786
1787 * sysdeps/unix/sysv/linux/bits/termios.h (_IOT_termios): Remove.
1788 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1789 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1790
1791 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1792 termios-tcflow.h.
1793 * sysdeps/unix/sysv/linux/bits/termios-tcflow.h: New file.
1794 * sysdeps/unix/sysv/linux/mips/bits/termios-tcflow.h: Likewise.
1795 * sysdeps/unix/sysv/linux/bits/termios.h (TCSANOW, TCSADRAIN,
1796 TCSAFLUSH): Move to termios-tcflow.h.
1797 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1798 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1799 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1800 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1801
1802 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1803 termios-c_lflag.h.
1804 * sysdeps/unix/sysv/linux/bits/termios-c_lflag.h: New file.
1805 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_lflag.h: Likewise.
1806 * sysdeps/unix/sysv/linux/mips/bits/termios-c_lflag.h: Likewise.
1807 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h: Likewise.
1808 * sysdeps/unix/sysv/linux/bits/termios.h (ISIG, ISCANON, ECHO, ECHOE,
1809 ECHOK, ECHONL, NOFLSH, TOSTOP, IEXTEN): Move to termios-c_lflag.h.
1810 [__USE_MISC || (__USE_XOPEN && !__USE_XOPEN2K)] (XCASE): Likewise.
1811 [__USE_MISC] (ECHOCTL, ECHOPRT, ECHOKE, FLUSHO, PENDIN, EXTPROC):
1812 Likewise.
1813 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1814 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1815 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1816 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1817
1818 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1819 termios-c_cflag.h.
1820 * sysdeps/unix/sysv/linux/bits/termios-c_cflag.h: New file.
1821 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cflag.h: Likewise.
1822 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cflag.h: Likewise.
1823 * sysdeps/unix/sysv/linux/bits/termios.h (CSIZE, CS5, CS6, CS7, CS8,
1824 CSTOPB, CREAD, PARENB, PARODD, HUPCL, CLOCAL): Move to
1825 termios-c_cflag.h.
1826 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1827 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1828 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1829 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1830
1831 [BZ #23783]
1832 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1833 termios-baud.h.
1834 * sysdeps/unix/sysv/linux/bits/termios-baud.h: New file.
1835 * sysdeps/unix/sysv/linux/alpha/bits/termios-baud.h: Likewise.
1836 * sysdeps/unix/sysv/linux/powerpc/bits/termios-baud.h: Likewise.
1837 * sysdeps/unix/sysv/linux/sparc/bits/termios-baud.h: Likewise.
1838 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (B57600, B115200,
1839 B230400, B460800, B500000, B576000, B921600, B1000000, B1152000,
1840 B1500000, B2000000, B2500000, B3000000, B3500000, B4000000,
1841 __MAX_BAUD): Move to termios-baud.h.
1842 [__USE_MISC] (CBAUD, CBAUDEX): Likewise.
1843 * sysdeps/unix/sysv/linux/bits/termios.h: Likewise.
1844 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1845 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1846 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1847
1848 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add
1849 termios-c_oflag.h.
1850 * sysdeps/unix/sysv/linux/bits/termios-c_oflag.h: New file.
1851 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_oflag.h: Likewise.
1852 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_oflag.h: Likewise.
1853 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_oflag.h: Likewise.
1854 * sysdeps/unix/sysv/linux/bits/termios.h (OPOST, OLCUC, ONLCR, OCRNL,
1855 ONOCR, ONLRET, OFILL, OFDEL, VTDLY, VT0, VT1): Move to
1856 termios-c_oflag.h.
1857 [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, CRDLY, CR0, CR1, CR2,
1858 CR3, TABDLY, TAB0, TAB1, TAB2, TAB3, BSDLY, BS0, BS1, FFDLY, FF0,
1859 FFR1): Likewise.
1860 [USE_MISC] (XTABS): Likewise.
1861 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1862 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1863 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1864 * sysdeps/unix/sysv/linux/sparc/bits/termios.h Likewise.
1865
1866 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
1867 termios-c_iflag.h.
1868 * sysdeps/unix/sysv/linux/bits/termios-c_iflag.h: New file.
1869 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_iflag.h: Likewise.
1870 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_iflag.h: Likewise.
1871 * sysdeps/unix/sysv/linux/bits/termios.h (IGNBRK, BRKINT, IGNPAR, PARMRK,
1872 INPCK, ISTRIP, INLCR, IGNCR, ICRNL, IXON, IXOFF, IXANY, IUCLC, IMAXBEL,
1873 IUTF8): Move to termios-c_iflag.h.
1874 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1875 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1876 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1877 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1878
1879 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
1880 termios-cc.h.
1881 * sysdeps/unix/sysv/linux/bits/termios-c_cc.h: Likewise.
1882 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cc.h: New file.
1883 * sysdeps/unix/sysv/linux/mips/bits/termios-c_cc.h: Likewise.
1884 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cc.h: Likewise.
1885 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_cc.h: Likewise.
1886 * sysdeps/unix/sysv/linux/bits/termios.h (VINTR, VQUIT, VERASE,
1887 VKILL, VEOF, VTIME, VMIN, VSWTC, VSTART, VSTOP, VSUSP, VEOL,
1888 VREPRINT, VDISCARD, VWERASE, VLNEXT, VEOLF2): Move to termios-cc.h.
1889 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1890 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1891 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1892 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1893
1894 * sysdeps/unix/sysv/linux/alpha/bits/termios-struct.h: New file.
1895 * sysdeps/unix/sysv/linux/bits/termios-struct.h: Likewise.
1896 * sysdeps/unix/sysv/linux/mips/bits/termios-struct.h: Likewise.
1897 * sysdeps/unix/sysv/linux/sparc/bits/termios-struct.h: Likewise.
1898 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1899 termios-struct.h.
1900 * sysdeps/unix/sysv/linux/bits/termios.h (struct termios): Move to
1901 termios-struct.h.
1902 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (struct termios):
1903 Likewise.
1904 * sysdeps/unix/sysv/linux/mips/bits/termios.h (struct termios):
1905 Likewise.
1906 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct termios):
1907 Likewise.
1908 * sysdeps/unix/sysv/linux/sparc/bits/termios.h (struct termios):
1909 Likewise.
1910 * sysdeps/unix/sysv/linux/kernel_termios.h (_HAVE_C_ISPEED,
1911 _HAVE_C_OSPEED): Define.
1912 * sysdeps/unix/sysv/linux/mips/kernel_termios.h (_HAVE_C_ISPEED,
1913 _HAVE_C_OSPEED): Likewise.
1914 * sysdeps/unix/sysv/linux/sparc/kernel_termios.h (_HAVE_C_ISPEED,
1915 _HAVE_C_OSPEED): Likewise.
1916 * sysdeps/unix/sysv/linux/speed.c [_HAVE_STRUCT_TERMIOS_C_OSPEED]
1917 (cfsetospeed): Check for define value instead of existence.
1918 [_HAVE_STRUCT_TERMIOS_C_ISPEED] (cfsetispeed): Likewise.
1919 * sysdeps/unix/sysv/linux/tcgetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
1920 && _HAVE_C_ISPEED] (__tcgetattr): Likewise.
1921 * sysdeps/unix/sysv/linux/tcsetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
1922 && _HAVE_C_ISPEED] (__tcsetattr): Likewise.
1923
1924 [BZ #17783]
1925 * sysdeps/unix/sysv/linux/bits/termios.h [__USE_MISC] (TIOCSER_TEMT):
1926 Define.
1927 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
1928 (TIOCSER_TEMT): Likewise.
1929 * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_MISC]
1930 (TEOCSER_TEMT): Likewise.
1931
1932 2019-01-02 PanderMusubi <pander@users.sourceforge.net>
1933
1934 [BZ #24011]
1935 * localedata/locales/bs_BA (LC_TELEPHONE): Fix a typo in comment.
1936
1937 2019-01-02 Joseph Myers <joseph@codesourcery.com>
1938
1939 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
1940
1941 2019-01-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
1942
1943 * sysdeps/htl/pt-barrierattr-setpshared.c
1944 (pthread_barrierattr_setpshared): Add stub warning.
1945 * sysdeps/htl/pt-condattr-setpshared.c
1946 (pthread_condattr_setpshared): Likewise.
1947 * sysdeps/htl/pt-mutexattr-setpshared.c
1948 (pthread_mutexattr_setpshared): Likewise.
1949 * sysdeps/htl/pt-rwlockattr-setpshared.c
1950 (pthread_rwlockattr_setpshared): Likewise.
1951 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c
1952 (pthread_mutexattr_setpshared): Likewise.
1953
1954 2019-01-02 Joseph Myers <joseph@codesourcery.com>
1955
1956 * sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Expect
1957 constants to match with Linux 4.20.
1958
1959 * sysdeps/mips/mips32/libm-test-ulps: Update.
1960 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
1961
1962 2019-01-02 Aurelien Jarno <aurelien@aurel32.net>
1963
1964 [BZ #24034]
1965 * sysdeps/unix/sysv/linux/arm/atomic-machine.h
1966 (__arm_assisted_compare_and_exchange_val_32_acq): Use uint32_t rather
1967 than __typeof (...) for the a_ptr variable.
1968
1969 2019-01-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
1970
1971 * debug/sprintf_chk.c (___sprintf_chk): Use PRINTF_CHK.
1972 * debug/vsprintf_chk.c (___vsprintf_chk): Likewise.
1973 * libio/Makefile (tests): Add tst-sprintf-ub and
1974 tst-sprintf-chk-ub.
1975 (CFLAGS-tst-sprintf-ub.c): New variable.
1976 (CFLAGS-tst-sprintf-chk-ub.c): Likewise.
1977 * libio/iovsprintf.c (__vsprintf_internal): Only erase the
1978 destination buffer and check for overflows in fortified mode.
1979 * libio/libioP.h (PRINTF_CHK): New macro.
1980 * libio/tst-sprintf-chk-ub.c: New file.
1981 * libio/tst-sprintf-ub.c: Likewise.
1982
1983 2019-01-02 Florian Weimer <fweimer@redhat.com>
1984
1985 [BZ #24018]
1986 * intl/dcigettext.c (DCIGETTEXT): Do not return NULL on asprintf
1987 failure.
1988
1989 2019-01-02 Florian Weimer <fweimer@redhat.com>
1990
1991 * nptl/tst-audit-threads.c: Switch to <support/test-driver.c>.
1992
1993 2019-01-01 Joseph Myers <joseph@codesourcery.com>
1994
1995 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_MULTICAST_ALL): New
1996 macro.
1997
1998 * sysdeps/unix/sysv/linux/netpacket/packet.h
1999 (PACKET_IGNORE_OUTGOING): New macro.
2000
2001 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SSBS): New
2002 macro.
2003
2004 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
2005 version to 4.20.
2006 (riscv_flush_icache): New syscall.
2007
2008 * manual/texinfo.tex: Update to version 2018-12-28.17 with
2009 trailing whitespace removed.
2010 * scripts/config.guess: Update to version 2019-01-01.
2011 * scripts/config.sub: Update to version 2019-01-01.
2012 * scripts/move-if-change: Update from gnulib.
2013
2014 * NEWS: Update copyright dates.
2015 * catgets/gencat.c (print_version): Likewise.
2016 * csu/version.c (banner): Likewise.
2017 * debug/catchsegv.sh: Likewise.
2018 * debug/pcprofiledump.c (print_version): Likewise.
2019 * debug/xtrace.sh (do_version): Likewise.
2020 * elf/ldconfig.c (print_version): Likewise.
2021 * elf/ldd.bash.in: Likewise.
2022 * elf/pldd.c (print_version): Likewise.
2023 * elf/sotruss.sh: Likewise.
2024 * elf/sprof.c (print_version): Likewise.
2025 * iconv/iconv_prog.c (print_version): Likewise.
2026 * iconv/iconvconfig.c (print_version): Likewise.
2027 * locale/programs/locale.c (print_version): Likewise.
2028 * locale/programs/localedef.c (print_version): Likewise.
2029 * login/programs/pt_chown.c (print_version): Likewise.
2030 * malloc/memusage.sh (do_version): Likewise.
2031 * malloc/memusagestat.c (print_version): Likewise.
2032 * malloc/mtrace.pl: Likewise.
2033 * manual/libc.texinfo: Likewise.
2034 * nptl/version.c (banner): Likewise.
2035 * nscd/nscd.c (print_version): Likewise.
2036 * nss/getent.c (print_version): Likewise.
2037 * nss/makedb.c (print_version): Likewise.
2038 * posix/getconf.c (main): Likewise.
2039 * scripts/test-installation.pl: Likewise.
2040 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
2041
2042 * All files with FSF copyright notices: Update copyright dates
2043 using scripts/update-copyrights.
2044 * locale/programs/charmap-kw.h: Regenerated.
2045 * locale/programs/locfile-kw.h: Likewise.
2046
2047 2018-12-31 Joseph Myers <joseph@codesourcery.com>
2048
2049 * timezone/zdump.c: Update from tzcode 2018i.
2050 * timezone/zic.c: Likewise.
2051
2052 2018-12-31 Paul Eggert <eggert@cs.ucla.edu>
2053
2054 regex: improve Gnulib port to AIX
2055 From the glibc point of view, this removes duplicate macro
2056 definitions and is obviously safe.
2057 From the Gnulib point of view, this pacifies xlc 12.01 on AIX 7.1.
2058 * posix/regex_internal.h:
2059 (__attribute__, __attribute_warn_unused_result__):
2060 Remove; already defined elsewhere.
2061
2062 2018-12-31 Florian Weimer <fw@deneb.enyo.de>
2063
2064 [BZ #24027]
2065 * malloc/malloc.c (_int_realloc): Always call memcpy for the
2066 copying operation. (ncopies had the wrong type, resulting in an
2067 integer wraparound and too few elements being copied.)
2068
2069 2018-12-31 H.J. Lu <hongjiu.lu@intel.com>
2070
2071 [BZ #24022]
2072 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Check if
2073 <asm/syscalls.h> exists with __has_include__ before including it.
2074
2075 2018-12-31 Joseph Myers <joseph@codesourcery.com>
2076
2077 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
2078 version to 4.20.
2079
2080 2018-12-28 Justus Winter <4winter@informatik.uni-hamburg.de>
2081
2082 * hurd/lookup-retry: Include <unistd.h>.
2083 (__hurd_file_name_lookup_retry): Keep a ref on last result in `lastdir'.
2084 Release it on return. Handle "pid" magical lookup retry.
2085
2086 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
2087
2088 [BZ #10496]
2089 * localedata/locales/aa_DJ (t_fmt): Set to "%l:%M:%S %p".
2090 (t_fmt_ampm): Likewise.
2091 * localedata/locales/aa_ER (t_fmt): Likewise.
2092 (t_fmt_ampm): Likewise.
2093 * localedata/locales/aa_ER@saaho (t_fmt): Likewise.
2094 (t_fmt_ampm): Likewise.
2095 * localedata/locales/aa_ET (t_fmt): Likewise.
2096 (t_fmt_ampm): Likewise.
2097 * localedata/locales/am_ET (t_fmt): Likewise.
2098 (t_fmt_ampm): Likewise.
2099 * localedata/locales/byn_ER (t_fmt): Likewise.
2100 (t_fmt_ampm): Likewise.
2101 * localedata/locales/om_ET (t_fmt): Likewise.
2102 (t_fmt_ampm): Likewise.
2103 * localedata/locales/sid_ET (t_fmt): Likewise.
2104 (t_fmt_ampm): Likewise.
2105 * localedata/locales/so_DJ (t_fmt): Likewise.
2106 (t_fmt_ampm): Likewise.
2107 * localedata/locales/so_ET (t_fmt): Likewise.
2108 (t_fmt_ampm): Likewise.
2109 * localedata/locales/so_SO (t_fmt): Likewise.
2110 (t_fmt_ampm): Likewise.
2111 * localedata/locales/ti_ER (t_fmt): Likewise.
2112 (t_fmt_ampm): Likewise.
2113 * localedata/locales/ti_ET (t_fmt): Likewise.
2114 (t_fmt_ampm): Likewise.
2115 * localedata/locales/tig_ER (t_fmt): Likewise.
2116 (t_fmt_ampm): Likewise.
2117 * localedata/locales/wal_ET (t_fmt): Likewise.
2118 (t_fmt_ampm): Likewise.
2119
2120 * localedata/locales/anp_IN (t_fmt): Set to "%I:%M:%S %p %Z".
2121 * localedata/locales/ar_IN (t_fmt): Likewise.
2122 * localedata/locales/bhb_IN (t_fmt): Likewise.
2123 * localedata/locales/bho_IN (t_fmt): Likewise.
2124 * localedata/locales/bi_VU (t_fmt): Likewise.
2125 * localedata/locales/bn_BD (t_fmt): Likewise.
2126 * localedata/locales/bn_IN (t_fmt): Likewise.
2127 * localedata/locales/brx_IN (t_fmt): Likewise.
2128 * localedata/locales/doi_IN (t_fmt): Likewise.
2129 * localedata/locales/en_HK (t_fmt): Likewise.
2130 (t_fmt_ampm): Likewise.
2131 * localedata/locales/en_IN (t_fmt): Likewise.
2132 * localedata/locales/en_PH (t_fmt): Likewise.
2133 * localedata/locales/gu_IN (t_fmt): Likewise.
2134 * localedata/locales/hi_IN (t_fmt): Likewise.
2135 * localedata/locales/hif_FJ (t_fmt): Likewise.
2136 * localedata/locales/hne_IN (t_fmt): Likewise.
2137 * localedata/locales/kn_IN (t_fmt): Likewise.
2138 * localedata/locales/kok_IN (t_fmt): Likewise.
2139 * localedata/locales/ks_IN (t_fmt): Likewise.
2140 * localedata/locales/ks_IN@devanagari (t_fmt): Likewise.
2141 * localedata/locales/mag_IN (t_fmt): Likewise.
2142 * localedata/locales/mai_IN (t_fmt): Likewise.
2143 * localedata/locales/mjw_IN (t_fmt): Likewise.
2144 * localedata/locales/ml_IN (t_fmt): Likewise.
2145 * localedata/locales/mni_IN (t_fmt): Likewise.
2146 * localedata/locales/mr_IN (t_fmt): Likewise.
2147 * localedata/locales/ms_MY (t_fmt): Likewise.
2148 * localedata/locales/pa_IN (t_fmt): Likewise.
2149 * localedata/locales/raj_IN (t_fmt): Likewise.
2150 * localedata/locales/sa_IN (t_fmt): Likewise.
2151 * localedata/locales/sat_IN (t_fmt): Likewise.
2152 * localedata/locales/sd_IN (t_fmt): Likewise.
2153 * localedata/locales/sd_IN@devanagari (t_fmt): Likewise.
2154 * localedata/locales/tcy_IN (t_fmt): Likewise.
2155 * localedata/locales/the_NP (t_fmt): Likewise.
2156 * localedata/locales/to_TO (t_fmt): Likewise.
2157 * localedata/locales/ur_IN (t_fmt): Likewise.
2158
2159 * localedata/locales/hif_FJ (d_t_fmt): Set to
2160 "%A %d %b %Y %I:%M:%S %p".
2161 (date_fmt): Add, set to "%A %d %b %Y %I:%M:%S %p %Z".
2162
2163 * localedata/locales/ar_AE (t_fmt): Set to "%Z %I:%M:%S %p".
2164 * localedata/locales/ar_BH (t_fmt): Likewise.
2165 * localedata/locales/ar_DZ (t_fmt): Likewise.
2166 * localedata/locales/ar_EG (t_fmt): Likewise.
2167 * localedata/locales/ar_IQ (t_fmt): Likewise.
2168 * localedata/locales/ar_JO (t_fmt): Likewise.
2169 * localedata/locales/ar_KW (t_fmt): Likewise.
2170 * localedata/locales/ar_LB (t_fmt): Likewise.
2171 * localedata/locales/ar_LY (t_fmt): Likewise.
2172 * localedata/locales/ar_OM (t_fmt): Likewise.
2173 * localedata/locales/ar_QA (t_fmt): Likewise.
2174 * localedata/locales/ar_SD (t_fmt): Likewise.
2175 * localedata/locales/ar_SS (t_fmt): Likewise.
2176 * localedata/locales/ar_SY (t_fmt): Likewise.
2177 * localedata/locales/ar_TN (t_fmt): Likewise.
2178 * localedata/locales/ar_YE (t_fmt): Likewise.
2179
2180 * localedata/locales/gez_ER (t_fmt): Set to "%l:%M:%S<U1361>%p".
2181 (t_fmt_ampm): Likewise.
2182 * localedata/locales/gez_ET (t_fmt): Likewise.
2183 (t_fmt_ampm): Likewise.
2184
2185 * localedata/locales/ta_IN (t_fmt): Set to "%p %I:%M:%S %Z".
2186 (t_fmt_ampm): Likewise.
2187 (d_t_fmt): Set to "%A %d %B %Y %p %I:%M:%S %Z".
2188
2189 * localedata/locales/zh_HK (t_fmt):
2190 Set to "%p %I<U6642>%M<U5206>%S<U79D2> %Z".
2191
2192 * localedata/locales/ar_MA (t_fmt_ampm): Set to "" (empty string)
2193 because this locale does not use the 12-hour clock.
2194 (t_fmt): Set to "%Z %H:%M:%S".
2195 (d_t_fmt): Set to "%d %b, %Y %Z %H:%M:%S".
2196
2197 * localedata/locales/mt_MT (t_fmt_ampm): Set to "" (empty string)
2198 because this locale does not use the 12-hour clock.
2199 (t_fmt): Set to "%H:%M:%S %Z".
2200 (d_t_fmt): Set to "%A, %d ta %b, %Y %H:%M:%S %Z".
2201
2202 * localedata/locales/so_KE (t_fmt_ampm): Set to "" (empty string)
2203 because this locale does not use the 12-hour clock.
2204 (t_fmt): Set to "%T".
2205 (d_t_fmt): Set to "%A, %B %e, %Y %X %Z".
2206 (date_fmt): Set to "%A, %B %e, %X %Z %Y".
2207
2208 * localedata/locales/ta_LK (t_fmt_ampm): Set to "" (empty string)
2209 because this locale does not use the 12-hour clock.
2210 (t_fmt): Set to "%H:%M:%S %Z".
2211 (d_t_fmt): Set to "%A %d %B %Y %H:%M:%S %Z".
2212
2213 * localedata/locales/bg_BG (t_fmt_ampm): Set to "" (empty string)
2214 because this locale does not use the 12-hour clock.
2215 * localedata/locales/cs_CZ (t_fmt_ampm): Likewise.
2216 * localedata/locales/sk_SK (t_fmt_ampm): Likewise.
2217
2218 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
2219
2220 [BZ #10496]
2221 [BZ #23724]
2222 * localedata/locales/sq_AL (t_fmt): Set to "%I:%M:%S.%p %Z".
2223 (t_fmt_ampm): Likewise.
2224 (d_t_fmt): Set to "%a %-d %b %Y %I:%M:%S.%p".
2225 (date_fmt): Add, set to "%a %-d %b %Y %I:%M:%S.%p %Z".
2226 (d_fmt): Set to "%-d.%-m.%y".
2227
2228 2018-12-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2229
2230 * malloc/alloc_buffer_alloc_array.c (__libc_alloc_buffer_alloc_array):
2231 Use __builtin_mul_overflow in place of check_mul_overflow_size_t.
2232 * malloc/dynarray_emplace_enlarge.c (__libc_dynarray_emplace_enlarge):
2233 Likewise.
2234 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
2235 * malloc/reallocarray.c (__libc_reallocarray): Likewise.
2236 * malloc/malloc-internal.h (check_mul_overflow_size_t): Remove
2237 function.
2238 * support/blob_repeat.c (check_mul_overflow_size_t,
2239 (minimum_stride_size, support_blob_repeat_allocate): Likewise.
2240
2241 2018-12-28 Aurelien Jarno <aurelien@aurel32.net>
2242
2243 * sysdeps/alpha/fpu/libm-test-ulps: Regenerated.
2244
2245 2018-12-27 Paul Eggert <eggert@cs.ucla.edu>
2246
2247 regex: simplify Gnulib port
2248 This simplifies the code, by removing stuff intended for porting
2249 to Gnulib but no longer needed there.
2250 * posix/regcomp.c [!_LIBC]: No need to put #ifdef _LIBC around
2251 uses of libc_hidden_def, weak_alias.
2252 * posix/regcomp.c, posix/regexec.c: Use __restrict rather than
2253 _Restrict_ except for public-facing headers.
2254 * posix/regex_internal.h (attribute_hidden) [!_LIBC]:
2255 Remove; already defined elsewhere.
2256 * posix/regex.c, posix/regex_internal.h:
2257 Use __GNUC_PREREQ instead of rolling our own.
2258 * posix/regex_internal.h (__GNUC_PREREQ): Remove duplicate defn.
2259
2260 2018-12-27 Wilco Dijkstra <wdijkstr@arm.com>
2261
2262 * benchtests/bench-strlen.c (generic_strlen): New function.
2263 (memchr_strlen): New function.
2264
2265 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2266
2267 * sysdeps/x86_64/fpu/s_sincosf.S: Removed.
2268 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
2269 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.c: New file.
2270
2271 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2272
2273 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
2274
2275 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2276
2277 * sysdeps/ieee754/flt-32/s_sincosf.h: Include <sincosf_poly.h>.
2278 (sincos_t, sincosf_poly, sinf_poly): Moved to ...
2279 * sysdeps/ieee754/flt-32/sincosf_poly.h: Here. New file.
2280 * sysdeps/x86/fpu/s_sincosf_data.c: New file.
2281 * sysdeps/x86/fpu/sincosf_poly.h: Likewise.
2282 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Just include
2283 <sysdeps/ieee754/flt-32/s_sincosf.c>.
2284
2285 2018-12-21 Joseph Myers <joseph@codesourcery.com>
2286
2287 [BZ #24023]
2288 * sysdeps/unix/sysv/linux/nios2/localplt.data: Allow __floatundidf
2289 PLT reference in libc.so.
2290 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Allow
2291 _Q_lltoq and _Q_qtod PLT references in libc.so.
2292
2293 2018-12-21 Wilco Dijkstra <wdijkstr@arm.com>
2294
2295 * benchtests/bench-memchr.c: Cleanup defines.
2296 * benchtests/bench-memcmp.c: Likewise.
2297 * benchtests/bench-memset.c: Likewise.
2298 * benchtests/bench-memset-large.c: Likewise.
2299 * benchtests/bench-memset-walk.c: Likewise.
2300 * benchtests/bench-stpcpy.c: Likewise.
2301 * benchtests/bench-stpncpy.c: Likewise.
2302 * benchtests/bench-strcat.c: Likewise.
2303 * benchtests/bench-strchr.c: Likewise.
2304 * benchtests/bench-strcmp.c: Likewise.
2305 * benchtests/bench-strcpy.c: Likewise.
2306 * benchtests/bench-strcspn.c: Likewise.
2307 * benchtests/bench-string.h: Likewise.
2308 * benchtests/bench-strlen.c: Likewise.
2309 * benchtests/bench-strncat.c: Likewise.
2310 * benchtests/bench-strncmp.c: Likewise.
2311 * benchtests/bench-strncpy.c: Likewise.
2312 * benchtests/bench-strnlen.c: Likewise.
2313 * benchtests/bench-strpbrk.c: Likewise.
2314 * benchtests/bench-strrchr.c: Likewise.
2315 * benchtests/bench-strspn.c: Likewise.
2316
2317 2018-12-21 Joseph Myers <joseph@codesourcery.com>
2318
2319 * stdlib/longlong.h: Update from GCC.
2320
2321 [BZ #23993]
2322 * configure.ac (libc_cv_compiler_ok): Require GCC 5 or later.
2323 * configure: Regenerated.
2324 * manual/install.texi (Tools for Compilation): Update minimum GCC
2325 version.
2326 * INSTALL: Regenerated.
2327
2328 2018-12-21 Istvan Kurucsai <pistukem@gmail.com>
2329
2330 * malloc/malloc.c (munmap_chunk): Verify chunk alignment.
2331
2332 2018-12-20 Istvan Kurucsai <pistukem@gmail.com>
2333
2334 * malloc/malloc.c (mremap_chunk): Additional checks.
2335
2336 2018-12-21 Mao Han <han_mao@c-sky.com>
2337
2338 * config.h.in (CSKYABI, CSKY_HARD_FLOAT): New Define.
2339 * scripts/build-many-glibcs.py: Add C-SKY targets.
2340 * sysdeps/csky/Implies: New file.
2341 * sysdeps/csky/Makefile: Likewise.
2342 * sysdeps/csky/abiv2/__longjmp.S: Likewise.
2343 * sysdeps/csky/abiv2/csky-mcount.S: Likewise.
2344 * sysdeps/csky/abiv2/dl-trampoline.S: Likewise.
2345 * sysdeps/csky/abiv2/memcmp.S: Likewise.
2346 * sysdeps/csky/abiv2/memcpy.S: Likewise.
2347 * sysdeps/csky/abiv2/memmove.S: Likewise.
2348 * sysdeps/csky/abiv2/memset.S: Likewise.
2349 * sysdeps/csky/abiv2/setjmp.S: Likewise.
2350 * sysdeps/csky/abiv2/start.S: Likewise.
2351 * sysdeps/csky/abiv2/strcmp.S: Likewise.
2352 * sysdeps/csky/abiv2/strcpy.S: Likewise.
2353 * sysdeps/csky/abiv2/strlen.S: Likewise.
2354 * sysdeps/csky/abiv2/tls-macros.h: Likewise.
2355 * sysdeps/csky/abort-instr.h: Likewise.
2356 * sysdeps/csky/atomic-machine.h: Likewise.
2357 * sysdeps/csky/bits/endian.h: Likewise.
2358 * sysdeps/csky/bits/fenv.h: Likewise.
2359 * sysdeps/csky/bits/link.h: Likewise.
2360 * sysdeps/csky/bits/setjmp.h: Likewise.
2361 * sysdeps/csky/bsd-_setjmp.S: Likewise.
2362 * sysdeps/csky/bsd-setjmp.S: Likewise.
2363 * sysdeps/csky/configure: Likewise.
2364 * sysdeps/csky/configure.ac: Likewise.
2365 * sysdeps/csky/dl-machine.h: Likewise.
2366 * sysdeps/csky/dl-procinfo.c: Likewise.
2367 * sysdeps/csky/dl-procinfo.h: Likewise.
2368 * sysdeps/csky/dl-sysdep.h: Likewise.
2369 * sysdeps/csky/dl-tls.h: Likewise.
2370 * sysdeps/csky/fpu/fclrexcpt.c: Likewise.
2371 * sysdeps/csky/fpu/fedisblxcpt.c: Likewise.
2372 * sysdeps/csky/fpu/feenablxcpt.c: Likewise.
2373 * sysdeps/csky/fpu/fegetenv.c: Likewise.
2374 * sysdeps/csky/fpu/fegetexcept.c: Likewise.
2375 * sysdeps/csky/fpu/fegetmode.c: Likewise.
2376 * sysdeps/csky/fpu/fegetround.c: Likewise.
2377 * sysdeps/csky/fpu/feholdexcpt.c: Likewise.
2378 * sysdeps/csky/fpu/fenv_libc.h: Likewise.
2379 * sysdeps/csky/fpu/fenv_private.h: Likewise.
2380 * sysdeps/csky/fpu/fesetenv.c: Likewise.
2381 * sysdeps/csky/fpu/fesetexcept.c: Likewise.
2382 * sysdeps/csky/fpu/fesetmode.c: Likewise.
2383 * sysdeps/csky/fpu/fesetround.c: Likewise.
2384 * sysdeps/csky/fpu/feupdateenv.c: Likewise.
2385 * sysdeps/csky/fpu/fgetexcptflg.c: Likewise.
2386 * sysdeps/csky/fpu/fix-fp-int-convert-overflow.h: Likewise.
2387 * sysdeps/csky/fpu/fraiseexcpt.c: Likewise.
2388 * sysdeps/csky/fpu/fsetexcptflg.c: Likewise.
2389 * sysdeps/csky/fpu/ftestexcept.c: Likewise.
2390 * sysdeps/csky/fpu/libm-test-ulps: Likewise.
2391 * sysdeps/csky/fpu/libm-test-ulps-name: Likewise.
2392 * sysdeps/csky/fpu_control.h: Likewise.
2393 * sysdeps/csky/gccframe.h: Likewise.
2394 * sysdeps/csky/jmpbuf-unwind.h: Likewise.
2395 * sysdeps/csky/ldsodefs.h: Likewise.
2396 * sysdeps/csky/libc-tls.c: Likewise.
2397 * sysdeps/csky/linkmap.h: Likewise.
2398 * sysdeps/csky/machine-gmon.h: Likewise.
2399 * sysdeps/csky/memusage.h: Likewise.
2400 * sysdeps/csky/nofpu/Implies: Likewise.
2401 * sysdeps/csky/nofpu/libm-test-ulps: Likewise.
2402 * sysdeps/csky/nofpu/libm-test-ulps-name: Likewise.
2403 * sysdeps/csky/nptl/Makefile: Likewise.
2404 * sysdeps/csky/nptl/bits/pthreadtypes-arch.h: Likewise.
2405 * sysdeps/csky/nptl/bits/semaphore.h: Likewise.
2406 * sysdeps/csky/nptl/pthread-offsets.h: Likewise.
2407 * sysdeps/csky/nptl/pthreaddef.h: Likewise.
2408 * sysdeps/csky/nptl/tcb-offsets.sym: Likewise.
2409 * sysdeps/csky/nptl/tls.h: Likewise.
2410 * sysdeps/csky/preconfigure: Likewise.
2411 * sysdeps/csky/sfp-machine.h: Likewise.
2412 * sysdeps/csky/sotruss-lib.c: Likewise.
2413 * sysdeps/csky/stackinfo.h: Likewise.
2414 * sysdeps/csky/sysdep.h: Likewise.
2415 * sysdeps/csky/tininess.h: Likewise.
2416 * sysdeps/csky/tst-audit.h: Likewise.
2417 * sysdeps/unix/sysv/linux/csky/Implies: Likewise.
2418 * sysdeps/unix/sysv/linux/csky/Makefile: Likewise.
2419 * sysdeps/unix/sysv/linux/csky/Versions: Likewise.
2420 * sysdeps/unix/sysv/linux/csky/abiv2/____longjmp_chk.S: Likewise.
2421 * sysdeps/unix/sysv/linux/csky/abiv2/clone.S: Likewise.
2422 * sysdeps/unix/sysv/linux/csky/abiv2/getcontext.S: Likewise.
2423 * sysdeps/unix/sysv/linux/csky/abiv2/setcontext.S: Likewise.
2424 * sysdeps/unix/sysv/linux/csky/abiv2/swapcontext.S: Likewise.
2425 * sysdeps/unix/sysv/linux/csky/abiv2/syscall.S: Likewise.
2426 * sysdeps/unix/sysv/linux/csky/abiv2/sysdep.S: Likewise.
2427 * sysdeps/unix/sysv/linux/csky/abiv2/ucontext_i.sym: Likewise.
2428 * sysdeps/unix/sysv/linux/csky/bits/procfs.h: Likewise.
2429 * sysdeps/unix/sysv/linux/csky/bits/shmlba.h: Likewise.
2430 * sysdeps/unix/sysv/linux/csky/c++-types.data: Likewise.
2431 * sysdeps/unix/sysv/linux/csky/configure: Likewise.
2432 * sysdeps/unix/sysv/linux/csky/configure.ac: Likewise.
2433 * sysdeps/unix/sysv/linux/csky/ipc_priv.h: Likewise.
2434 * sysdeps/unix/sysv/linux/csky/jmp_buf-macros.h: Likewise.
2435 * sysdeps/unix/sysv/linux/csky/kernel-features.h: Likewise.
2436 * sysdeps/unix/sysv/linux/csky/ld.abilist: Likewise.
2437 * sysdeps/unix/sysv/linux/csky/ldconfig.h: Likewise.
2438 * sysdeps/unix/sysv/linux/csky/libBrokenLocale.abilist: Likewise.
2439 * sysdeps/unix/sysv/linux/csky/libanl.abilist: Likewise.
2440 * sysdeps/unix/sysv/linux/csky/libc.abilist: Likewise.
2441 * sysdeps/unix/sysv/linux/csky/libcrypt.abilist: Likewise.
2442 * sysdeps/unix/sysv/linux/csky/libdl.abilist: Likewise.
2443 * sysdeps/unix/sysv/linux/csky/libm.abilist: Likewise.
2444 * sysdeps/unix/sysv/linux/csky/libpthread.abilist: Likewise.
2445 * sysdeps/unix/sysv/linux/csky/libresolv.abilist: Likewise.
2446 * sysdeps/unix/sysv/linux/csky/librt.abilist: Likewise.
2447 * sysdeps/unix/sysv/linux/csky/libthread_db.abilist: Likewise.
2448 * sysdeps/unix/sysv/linux/csky/libutil.abilist: Likewise.
2449 * sysdeps/unix/sysv/linux/csky/localplt.data: Likewise.
2450 * sysdeps/unix/sysv/linux/csky/makecontext.c: Likewise.
2451 * sysdeps/unix/sysv/linux/csky/profil-counter.h: Likewise.
2452 * sysdeps/unix/sysv/linux/csky/pt-vfork.S: Likewise.
2453 * sysdeps/unix/sysv/linux/csky/register-dump.h: Likewise.
2454 * sysdeps/unix/sysv/linux/csky/shlib-versions: Likewise.
2455 * sysdeps/unix/sysv/linux/csky/sigcontextinfo.h: Likewise.
2456 * sysdeps/unix/sysv/linux/csky/sys/cachectl.h: Likewise.
2457 * sysdeps/unix/sysv/linux/csky/sys/ucontext.h: Likewise.
2458 * sysdeps/unix/sysv/linux/csky/sys/user.h: Likewise.
2459 * sysdeps/unix/sysv/linux/csky/syscalls.list: Likewise.
2460 * sysdeps/unix/sysv/linux/csky/sysdep.h: Likewise.
2461
2462 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
2463
2464 * include/time.h (__difftime64): Add.
2465 * time/difftime.c (subtract): convert to 64-bit time.
2466 * time/difftime.c (__difftime64): Add.
2467 * time/difftime.c (__difftime): Wrap around __difftime64.
2468
2469 2018-12-20 H.J. Lu <hongjiu.lu@intel.com>
2470
2471 * manual/examples/add.c: Remove redundant "if not".
2472 * manual/examples/argp-ex1.c: Likewise.
2473 * manual/examples/argp-ex2.c: Likewise.
2474 * manual/examples/argp-ex3.c: Likewise.
2475 * manual/examples/argp-ex4.c: Likewise.
2476 * manual/examples/atexit.c: Likewise.
2477 * manual/examples/db.c: Likewise.
2478 * manual/examples/dir.c: Likewise.
2479 * manual/examples/dir2.c: Likewise.
2480 * manual/examples/execinfo.c: Likewise.
2481 * manual/examples/filecli.c: Likewise.
2482 * manual/examples/filesrv.c: Likewise.
2483 * manual/examples/fmtmsgexpl.c: Likewise.
2484 * manual/examples/genpass.c: Likewise.
2485 * manual/examples/inetcli.c: Likewise.
2486 * manual/examples/inetsrv.c: Likewise.
2487 * manual/examples/isockad.c: Likewise.
2488 * manual/examples/longopt.c: Likewise.
2489 * manual/examples/memopen.c: Likewise.
2490 * manual/examples/memstrm.c: Likewise.
2491 * manual/examples/mkdirent.c: Likewise.
2492 * manual/examples/mkfsock.c: Likewise.
2493 * manual/examples/mkisock.c: Likewise.
2494 * manual/examples/mygetpass.c: Likewise.
2495 * manual/examples/pipe.c: Likewise.
2496 * manual/examples/popen.c: Likewise.
2497 * manual/examples/rprintf.c: Likewise.
2498 * manual/examples/search.c: Likewise.
2499 * manual/examples/select.c: Likewise.
2500 * manual/examples/setjmp.c: Likewise.
2501 * manual/examples/sigh1.c: Likewise.
2502 * manual/examples/sigusr.c: Likewise.
2503 * manual/examples/stpcpy.c: Likewise.
2504 * manual/examples/strdupa.c: Likewise.
2505 * manual/examples/strftim.c: Likewise.
2506 * manual/examples/subopt.c: Likewise.
2507 * manual/examples/swapcontext.c: Likewise.
2508 * manual/examples/termios.c: Likewise.
2509 * manual/examples/testopt.c: Likewise.
2510 * manual/examples/testpass.c: Likewise.
2511 * manual/examples/timeval_subtract.c: Likewise.
2512
2513 2018-12-19 Joseph Myers <joseph@codesourcery.com>
2514
2515 * sysdeps/x86/fpu/math_private.h: New file.
2516 * sysdeps/x86/fpu/bits/mathinline.h: Remove.
2517
2518 * sysdeps/x86/fpu/bits/mathinline.h (sinh): Remove inline
2519 definition.
2520 (cosh): Likewise.
2521 (tanh): Likewise.
2522
2523 2018-12-19 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2524
2525 * elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
2526 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
2527 AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
2528 AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
2529 fields.
2530 (_dl_show_auxv): Give a special treatment to
2531 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
2532 and AT_L3_CACHEGEOMETRY.
2533 * sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
2534 (_dl_procinfo): Fix indentation when printing AT_HWCAP and
2535 AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
2536 AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
2537
2538 2018-12-19 Andreas Schwab <schwab@suse.de>
2539
2540 * nscd/connections.c (check_use): Don't abort on invalid len.
2541
2542 2018-12-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
2543
2544 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Test against 64bit `cmd'
2545 values in the 64bit value cases.
2546
2547 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
2548
2549 * include/time.h
2550 (__ctime64_r): Add.
2551 * time/ctime_r.c
2552 (__ctime64_r): Add.
2553 [__TIMESIZE != 64] (__ctime_r): Turn into a wrapper.
2554
2555 * include/time.h
2556 (__ctime64): Add.
2557 * time/gmtime.c
2558 (__ctime64): Add.
2559 [__TIMESIZE != 64] (ctime): Turn into a wrapper.
2560
2561 * include/time.h
2562 (__gmtime64_r): Add.
2563 * time/gmtime.c
2564 (__gmtime64_r): Add.
2565 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
2566
2567 * include/time.h
2568 (__gmtime64): Add.
2569 * time/gmtime.c
2570 (__gmtime64): Add.
2571 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
2572
2573 * include/time.h
2574 (__localtime64_r): Add.
2575 * time/localtime.c
2576 (__localtime64_r): Add.
2577 [__TIMESIZE != 64] (__localtime_r): Turn into a wrapper.
2578
2579 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2580
2581 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Use Linux generic
2582 kernel_sigction definition.
2583
2584 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: Remove file.
2585
2586 * sysdeps/unix/sysv/linux/hppa/kernel_sigaction.h: Remove file.
2587
2588 * sysdeps/unix/sysv/linux/alpha/Makefile: Update comment about
2589 __syscall_rt_sigaction.
2590 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h
2591 (kernel_sigaction): Use Linux generic defintion.
2592 (STUB): Define.
2593 (__syscall_rt_sigreturn, __syscall_sigreturn): Add prototype.
2594 * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S
2595 (__syscall_rt_sigaction): Remove implementation.
2596 (__syscall_sigreturn, __syscall_rt_sigreturn): Define as global and
2597 hidden.
2598 * sysdeps/unix/sysv/linux/alpha/sigaction.c: Remove file.
2599 * sysdeps/unix/sysv/linux/alpha/sysdep.h (INLINE_SYSCALL,
2600 INTERNAL_SYSCALL): Remove definitions.
2601 * sysdeps/unix/sysv/linux/sigaction.c: Define STUB to accept both the
2602 action and signal set size.
2603 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (STUB): Redefine.
2604 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (STUB): Likewise.
2605
2606 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2607 James Clarke <jrtc27@jrtc27.com>
2608
2609 [BZ #23967]
2610 * sysdeps/unix/sysv/linux/kernel_sigaction.h (HAS_SA_RESTORER):
2611 Define if SA_RESTORER is defined.
2612 (kernel_sigaction): Define sa_restorer if HAS_SA_RESTORER is defined.
2613 (SET_SA_RESTORER, RESET_SA_RESTORER): Define iff the macro are not
2614 already defined.
2615 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h (SA_RESTORER,
2616 kernel_sigaction, SET_SA_RESTORER, RESET_SA_RESTORER): Remove
2617 definitions.
2618 (HAS_SA_RESTORER): Define.
2619 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h (SA_RESTORER,
2620 SET_SA_RESTORER, RESET_SA_RESTORER): Remove definition.
2621 (HAS_SA_RESTORER): Define.
2622 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Include generic
2623 kernel_sigaction after define SET_SA_RESTORER and RESET_SA_RESTORER.
2624 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction.h: Likewise.
2625 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
2626 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
2627
2628 2018-12-18 Joseph Myers <joseph@codesourcery.com>
2629
2630 * sysdeps/unix/sysv/linux/kernel-features.h
2631 (__ASSUME_ST_INO_64_BIT): Remove macro definition.
2632 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
2633 (__ASSUME_ST_INO_64_BIT): Do not undefine and define.
2634 * sysdeps/unix/sysv/linux/sh/kernel-features.h
2635 (__ASSUME_ST_INO_64_BIT): Likewise.
2636 * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
2637 <kernel-features.h>.
2638 (___fxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2639 Remove conditional code.
2640 * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
2641 <kernel-features.h>.
2642 (___lxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2643 Remove conditional code.
2644 * sysdeps/unix/sysv/linux/xstat64.c: Do not include
2645 <kernel-features.h>.
2646 (___xstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2647 Remove conditional code.
2648 * sysdeps/unix/sysv/linux/xstatconv.c: Do not include
2649 <kernel-features.h>.
2650 (__xstat32_conv) [_HAVE_STAT64___ST_INO]: Remove conditional code.
2651 [!_HAVE_STAT64___ST_INO]: Make code unconditional.
2652
2653 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2654
2655 * sysdeps/s390/multiarch/ifunc-resolve.h
2656 (s390_vx_libc_ifunc, s390_vx_libc_ifunc_redirected,
2657 s390_vx_libc_ifunc2, s390_vx_libc_ifunc_init,
2658 s390_vx_libc_ifunc2_redirected, s390_libc_ifunc):
2659 Delete macro definition.
2660 (s390_libc_ifunc_init): Rename to
2661 s390_libc_ifunc_expr_stfle_init.
2662 * sysdeps/s390/bzero: Use
2663 s390_libc_ifunc_expr_stfle_init instead of
2664 s390_libc_ifunc_init.
2665 * sysdeps/s390/memcmp.c: Likewise.
2666 * sysdeps/s390/memcpy.c: Likewise.
2667 * sysdeps/s390/mempcpy.c: Likewise.
2668 * sysdeps/s390/memset.c: Likewise.
2669
2670 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2671
2672 * sysdeps/s390/multiarch/gconv_simple.c (ICONV_VX_IFUNC):
2673 Define macro dependent on HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT.
2674
2675 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2676
2677 * sysdeps/s390/multiarch/Makefile
2678 (sysdep_routines): Remove wmemcmp variants.
2679 * sysdeps/s390/Makefile (sysdep_routines): Add wmemcmp variants.
2680 * sysdeps/s390/multiarch/ifunc-impl-list.c
2681 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemcmp.
2682 * sysdeps/s390/multiarch/wmemcmp-c.c: Move to ...
2683 * sysdeps/s390/wmemcmp-c.c: ... here and adjust ifunc handling.
2684 * sysdeps/s390/multiarch/wmemcmp-vx.S: Move to ...
2685 * sysdeps/s390/wmemcmp-vx.S: ... here and adjust ifunc handling.
2686 * sysdeps/s390/multiarch/wmemcmp.c: Move to ...
2687 * sysdeps/s390/wmemcmp.c: ... here and adjust ifunc handling.
2688 * sysdeps/s390/ifunc-wmemcmp.h: New file.
2689
2690 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2691
2692 * sysdeps/s390/multiarch/Makefile
2693 (sysdep_routines): Remove wmemset variants.
2694 * sysdeps/s390/Makefile (sysdep_routines): Add wmemset variants.
2695 * sysdeps/s390/multiarch/ifunc-impl-list.c
2696 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemset.
2697 * sysdeps/s390/multiarch/wmemset-c.c: Move to ...
2698 * sysdeps/s390/wmemset-c.c: ... here and adjust ifunc handling.
2699 * sysdeps/s390/multiarch/wmemset-vx.S: Move to ...
2700 * sysdeps/s390/wmemset-vx.S: ... here and adjust ifunc handling.
2701 * sysdeps/s390/multiarch/wmemset.c: Move to ...
2702 * sysdeps/s390/wmemset.c: ... here and adjust ifunc handling.
2703 * sysdeps/s390/ifunc-wmemset.h: New file.
2704
2705 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2706
2707 * sysdeps/s390/multiarch/Makefile
2708 (sysdep_routines): Remove wmemchr variants.
2709 * sysdeps/s390/Makefile (sysdep_routines): Add wmemchr variants.
2710 * sysdeps/s390/multiarch/ifunc-impl-list.c
2711 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemchr.
2712 * sysdeps/s390/multiarch/wmemchr-c.c: Move to ...
2713 * sysdeps/s390/wmemchr-c.c: ... here and adjust ifunc handling.
2714 * sysdeps/s390/multiarch/wmemchr-vx.S: Move to ...
2715 * sysdeps/s390/wmemchr-vx.S: ... here and adjust ifunc handling.
2716 * sysdeps/s390/multiarch/wmemchr.c: Move to ...
2717 * sysdeps/s390/wmemchr.c: ... here and adjust ifunc handling.
2718 * sysdeps/s390/ifunc-wmemchr.h: New file.
2719
2720 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2721
2722 * sysdeps/s390/multiarch/Makefile
2723 (sysdep_routines): Remove wcscspn variants.
2724 * sysdeps/s390/Makefile (sysdep_routines): Add wcscspn variants.
2725 * sysdeps/s390/multiarch/ifunc-impl-list.c
2726 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscspn.
2727 * sysdeps/s390/multiarch/wcscspn-c.c: Move to ...
2728 * sysdeps/s390/wcscspn-c.c: ... here and adjust ifunc handling.
2729 * sysdeps/s390/multiarch/wcscspn-vx.S: Move to ...
2730 * sysdeps/s390/wcscspn-vx.S: ... here and adjust ifunc handling.
2731 * sysdeps/s390/multiarch/wcscspn.c: Move to ...
2732 * sysdeps/s390/wcscspn.c: ... here and adjust ifunc handling.
2733 * sysdeps/s390/ifunc-wcscspn.h: New file.
2734
2735 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2736
2737 * sysdeps/s390/multiarch/Makefile
2738 (sysdep_routines): Remove wcspbrk variants.
2739 * sysdeps/s390/Makefile (sysdep_routines): Add wcspbrk variants.
2740 * sysdeps/s390/multiarch/ifunc-impl-list.c
2741 (__libc_ifunc_impl_list): Refactor ifunc handling for wcspbrk.
2742 * sysdeps/s390/multiarch/wcspbrk-c.c: Move to ...
2743 * sysdeps/s390/wcspbrk-c.c: ... here and adjust ifunc handling.
2744 * sysdeps/s390/multiarch/wcspbrk-vx.S: Move to ...
2745 * sysdeps/s390/wcspbrk-vx.S: ... here and adjust ifunc handling.
2746 * sysdeps/s390/multiarch/wcspbrk.c: Move to ...
2747 * sysdeps/s390/wcspbrk.c: ... here and adjust ifunc handling.
2748 * sysdeps/s390/ifunc-wcspbrk.h: New file.
2749
2750 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2751
2752 * sysdeps/s390/multiarch/Makefile
2753 (sysdep_routines): Remove wcsspn variants.
2754 * sysdeps/s390/Makefile (sysdep_routines): Add wcsspn variants.
2755 * sysdeps/s390/multiarch/ifunc-impl-list.c
2756 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsspn.
2757 * sysdeps/s390/multiarch/wcsspn-c.c: Move to ...
2758 * sysdeps/s390/wcsspn-c.c: ... here and adjust ifunc handling.
2759 * sysdeps/s390/multiarch/wcsspn-vx.S: Move to ...
2760 * sysdeps/s390/wcsspn-vx.S: ... here and adjust ifunc handling.
2761 * sysdeps/s390/multiarch/wcsspn.c: Move to ...
2762 * sysdeps/s390/wcsspn.c: ... here and adjust ifunc handling.
2763 * sysdeps/s390/ifunc-wcsspn.h: New file.
2764
2765 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2766
2767 * sysdeps/s390/multiarch/Makefile
2768 (sysdep_routines): Remove wcsrchr variants.
2769 * sysdeps/s390/Makefile (sysdep_routines): Add wcsrchr variants.
2770 * sysdeps/s390/multiarch/ifunc-impl-list.c
2771 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsrchr.
2772 * sysdeps/s390/multiarch/wcsrchr-c.c: Move to ...
2773 * sysdeps/s390/wcsrchr-c.c: ... here and adjust ifunc handling.
2774 * sysdeps/s390/multiarch/wcsrchr-vx.S: Move to ...
2775 * sysdeps/s390/wcsrchr-vx.S: ... here and adjust ifunc handling.
2776 * sysdeps/s390/multiarch/wcsrchr.c: Move to ...
2777 * sysdeps/s390/wcsrchr.c: ... here and adjust ifunc handling.
2778 * sysdeps/s390/ifunc-wcsrchr.h: New file.
2779
2780 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2781
2782 * sysdeps/s390/multiarch/Makefile
2783 (sysdep_routines): Remove wcschrnul variants.
2784 * sysdeps/s390/Makefile (sysdep_routines): Add wcschrnul variants.
2785 * sysdeps/s390/multiarch/ifunc-impl-list.c
2786 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschrnul.
2787 * sysdeps/s390/multiarch/wcschrnul-c.c: Move to ...
2788 * sysdeps/s390/wcschrnul-c.c: ... here and adjust ifunc handling.
2789 * sysdeps/s390/multiarch/wcschrnul-vx.S: Move to ...
2790 * sysdeps/s390/wcschrnul-vx.S: ... here and adjust ifunc handling.
2791 * sysdeps/s390/multiarch/wcschrnul.c: Move to ...
2792 * sysdeps/s390/wcschrnul.c: ... here and adjust ifunc handling.
2793 * sysdeps/s390/ifunc-wcschrnul.h: New file.
2794
2795 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2796
2797 * sysdeps/s390/multiarch/Makefile
2798 (sysdep_routines): Remove wcschr variants.
2799 * sysdeps/s390/Makefile (sysdep_routines): Add wcschr variants.
2800 * sysdeps/s390/multiarch/ifunc-impl-list.c
2801 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschr.
2802 * sysdeps/s390/multiarch/wcschr-c.c: Move to ...
2803 * sysdeps/s390/wcschr-c.c: ... here and adjust ifunc handling.
2804 * sysdeps/s390/multiarch/wcschr-vx.S: Move to ...
2805 * sysdeps/s390/wcschr-vx.S: ... here and adjust ifunc handling.
2806 * sysdeps/s390/multiarch/wcschr.c: Move to ...
2807 * sysdeps/s390/wcschr.c: ... here and adjust ifunc handling.
2808 * sysdeps/s390/ifunc-wcschr.h: New file.
2809
2810 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2811
2812 * sysdeps/s390/multiarch/Makefile
2813 (sysdep_routines): Remove wcsncmp variants.
2814 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncmp variants.
2815 * sysdeps/s390/multiarch/ifunc-impl-list.c
2816 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncmp.
2817 * sysdeps/s390/multiarch/wcsncmp-c.c: Move to ...
2818 * sysdeps/s390/wcsncmp-c.c: ... here and adjust ifunc handling.
2819 * sysdeps/s390/multiarch/wcsncmp-vx.S: Move to ...
2820 * sysdeps/s390/wcsncmp-vx.S: ... here and adjust ifunc handling.
2821 * sysdeps/s390/multiarch/wcsncmp.c: Move to ...
2822 * sysdeps/s390/wcsncmp.c: ... here and adjust ifunc handling.
2823 * sysdeps/s390/ifunc-wcsncmp.h: New file.
2824
2825 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2826
2827 * sysdeps/s390/multiarch/Makefile
2828 (sysdep_routines): Remove wcscmp variants.
2829 * sysdeps/s390/Makefile (sysdep_routines): Add wcscmp variants.
2830 * sysdeps/s390/multiarch/ifunc-impl-list.c
2831 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscmp.
2832 * sysdeps/s390/multiarch/wcscmp-c.c: Move to ...
2833 * sysdeps/s390/wcscmp-c.c: ... here and adjust ifunc handling.
2834 * sysdeps/s390/multiarch/wcscmp-vx.S: Move to ...
2835 * sysdeps/s390/wcscmp-vx.S: ... here and adjust ifunc handling.
2836 * sysdeps/s390/multiarch/wcscmp.c: Move to ...
2837 * sysdeps/s390/wcscmp.c: ... here and adjust ifunc handling.
2838 * sysdeps/s390/ifunc-wcscmp.h: New file.
2839
2840 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2841
2842 * sysdeps/s390/multiarch/Makefile
2843 (sysdep_routines): Remove wcsncat variants.
2844 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncat variants.
2845 * sysdeps/s390/multiarch/ifunc-impl-list.c
2846 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncat.
2847 * sysdeps/s390/multiarch/wcsncat-c.c: Move to ...
2848 * sysdeps/s390/wcsncat-c.c: ... here and adjust ifunc handling.
2849 * sysdeps/s390/multiarch/wcsncat-vx.S: Move to ...
2850 * sysdeps/s390/wcsncat-vx.S: ... here and adjust ifunc handling.
2851 * sysdeps/s390/multiarch/wcsncat.c: Move to ...
2852 * sysdeps/s390/wcsncat.c: ... here and adjust ifunc handling.
2853 * sysdeps/s390/ifunc-wcsncat.h: New file.
2854
2855 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2856
2857 * sysdeps/s390/multiarch/Makefile
2858 (sysdep_routines): Remove wcscat variants.
2859 * sysdeps/s390/Makefile (sysdep_routines): Add wcscat variants.
2860 * sysdeps/s390/multiarch/ifunc-impl-list.c
2861 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscat.
2862 * sysdeps/s390/multiarch/wcscat-c.c: Move to ...
2863 * sysdeps/s390/wcscat-c.c: ... here and adjust ifunc handling.
2864 * sysdeps/s390/multiarch/wcscat-vx.S: Move to ...
2865 * sysdeps/s390/wcscat-vx.S: ... here and adjust ifunc handling.
2866 * sysdeps/s390/multiarch/wcscat.c: Move to ...
2867 * sysdeps/s390/wcscat.c: ... here and adjust ifunc handling.
2868 * sysdeps/s390/ifunc-wcscat.h: New file.
2869
2870 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2871
2872 * sysdeps/s390/multiarch/Makefile
2873 (sysdep_routines): Remove wcpncpy variants.
2874 * sysdeps/s390/Makefile (sysdep_routines): Add wcpncpy variants.
2875 * sysdeps/s390/multiarch/ifunc-impl-list.c
2876 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpncpy.
2877 * sysdeps/s390/multiarch/wcpncpy-c.c: Move to ...
2878 * sysdeps/s390/wcpncpy-c.c: ... here and adjust ifunc handling.
2879 * sysdeps/s390/multiarch/wcpncpy-vx.S: Move to ...
2880 * sysdeps/s390/wcpncpy-vx.S: ... here and adjust ifunc handling.
2881 * sysdeps/s390/multiarch/wcpncpy.c: Move to ...
2882 * sysdeps/s390/wcpncpy.c: ... here and adjust ifunc handling.
2883 * sysdeps/s390/ifunc-wcpncpy.h: New file.
2884
2885 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2886
2887 * sysdeps/s390/multiarch/Makefile
2888 (sysdep_routines): Remove wcsncpy variants.
2889 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncpy variants.
2890 * sysdeps/s390/multiarch/ifunc-impl-list.c
2891 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncpy.
2892 * sysdeps/s390/multiarch/wcsncpy-c.c: Move to ...
2893 * sysdeps/s390/wcsncpy-c.c: ... here and adjust ifunc handling.
2894 * sysdeps/s390/multiarch/wcsncpy-vx.S: Move to ...
2895 * sysdeps/s390/wcsncpy-vx.S: ... here and adjust ifunc handling.
2896 * sysdeps/s390/multiarch/wcsncpy.c: Move to ...
2897 * sysdeps/s390/wcsncpy.c: ... here and adjust ifunc handling.
2898 * sysdeps/s390/ifunc-wcsncpy.h: New file.
2899
2900 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2901
2902 * sysdeps/s390/multiarch/Makefile
2903 (sysdep_routines): Remove wcpcpy variants.
2904 * sysdeps/s390/Makefile (sysdep_routines): Add wcpcpy variants.
2905 * sysdeps/s390/multiarch/ifunc-impl-list.c
2906 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpcpy.
2907 * sysdeps/s390/multiarch/wcpcpy-c.c: Move to ...
2908 * sysdeps/s390/wcpcpy-c.c: ... here and adjust ifunc handling.
2909 * sysdeps/s390/multiarch/wcpcpy-vx.S: Move to ...
2910 * sysdeps/s390/wcpcpy-vx.S: ... here and adjust ifunc handling.
2911 * sysdeps/s390/multiarch/wcpcpy.c: Move to ...
2912 * sysdeps/s390/wcpcpy.c: ... here and adjust ifunc handling.
2913 * sysdeps/s390/ifunc-wcpcpy.h: New file.
2914
2915 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2916
2917 * sysdeps/s390/multiarch/Makefile
2918 (sysdep_routines): Remove wcscpy variants.
2919 * sysdeps/s390/Makefile (sysdep_routines): Add wcscpy variants.
2920 * sysdeps/s390/multiarch/ifunc-impl-list.c
2921 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscpy.
2922 * sysdeps/s390/multiarch/wcscpy-c.c: Move to ...
2923 * sysdeps/s390/wcscpy-c.c: ... here and adjust ifunc handling.
2924 * sysdeps/s390/multiarch/wcscpy-vx.S: Move to ...
2925 * sysdeps/s390/wcscpy-vx.S: ... here and adjust ifunc handling.
2926 * sysdeps/s390/multiarch/wcscpy.c: Move to ...
2927 * sysdeps/s390/wcscpy.c: ... here and adjust ifunc handling.
2928 * sysdeps/s390/ifunc-wcscpy.h: New file.
2929
2930 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2931
2932 * sysdeps/s390/multiarch/Makefile
2933 (sysdep_routines): Remove wcsnlen variants.
2934 * sysdeps/s390/Makefile (sysdep_routines): Add wcsnlen variants.
2935 * sysdeps/s390/multiarch/ifunc-impl-list.c
2936 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsnlen.
2937 * sysdeps/s390/multiarch/wcsnlen-c.c: Move to ...
2938 * sysdeps/s390/wcsnlen-c.c: ... here and adjust ifunc handling.
2939 * sysdeps/s390/multiarch/wcsnlen-vx.S: Move to ...
2940 * sysdeps/s390/wcsnlen-vx.S: ... here and adjust ifunc handling.
2941 * sysdeps/s390/multiarch/wcsnlen.c: Move to ...
2942 * sysdeps/s390/wcsnlen.c: ... here and adjust ifunc handling.
2943 * sysdeps/s390/ifunc-wcsnlen.h: New file.
2944
2945 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2946
2947 * sysdeps/s390/multiarch/Makefile
2948 (sysdep_routines): Remove wcslen variants.
2949 * sysdeps/s390/Makefile (sysdep_routines): Add wcslen variants.
2950 * sysdeps/s390/multiarch/ifunc-impl-list.c
2951 (__libc_ifunc_impl_list): Refactor ifunc handling for wcslen.
2952 * sysdeps/s390/multiarch/wcslen-c.c: Move to ...
2953 * sysdeps/s390/wcslen-c.c: ... here and adjust ifunc handling.
2954 * sysdeps/s390/multiarch/wcslen-vx.S: Move to ...
2955 * sysdeps/s390/wcslen-vx.S: ... here and adjust ifunc handling.
2956 * sysdeps/s390/multiarch/wcslen.c: Move to ...
2957 * sysdeps/s390/wcslen.c: ... here and adjust ifunc handling.
2958 * sysdeps/s390/ifunc-wcslen.h: New file.
2959
2960 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2961
2962 * sysdeps/s390/multiarch/Makefile
2963 (sysdep_routines): Remove memrchr variants.
2964 * sysdeps/s390/Makefile (sysdep_routines): Add memrchr variants.
2965 * sysdeps/s390/multiarch/ifunc-impl-list.c
2966 (__libc_ifunc_impl_list): Refactor ifunc handling for memrchr.
2967 * sysdeps/s390/multiarch/memrchr-c.c: Move to ...
2968 * sysdeps/s390/memrchr-c.c: ... here and adjust ifunc handling.
2969 * sysdeps/s390/multiarch/memrchr-vx.S: Move to ...
2970 * sysdeps/s390/memrchr-vx.S: ... here and adjust ifunc handling.
2971 * sysdeps/s390/multiarch/memrchr.c: Move to ...
2972 * sysdeps/s390/memrchr.c: ... here and adjust ifunc handling.
2973 * sysdeps/s390/ifunc-memrchr.h: New file.
2974
2975 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2976
2977 * sysdeps/s390/multiarch/Makefile
2978 (sysdep_routines): Remove memccpy variants.
2979 * sysdeps/s390/Makefile (sysdep_routines): Add memccpy variants.
2980 * sysdeps/s390/multiarch/ifunc-impl-list.c
2981 (__libc_ifunc_impl_list): Refactor ifunc handling for memccpy.
2982 * sysdeps/s390/multiarch/memccpy-c.c: Move to ...
2983 * sysdeps/s390/memccpy-c.c: ... here and adjust ifunc handling.
2984 * sysdeps/s390/multiarch/memccpy-vx.S: Move to ...
2985 * sysdeps/s390/memccpy-vx.S: ... here and adjust ifunc handling.
2986 * sysdeps/s390/multiarch/memccpy.c: Move to ...
2987 * sysdeps/s390/memccpy.c: ... here and adjust ifunc handling.
2988 * sysdeps/s390/ifunc-memccpy.h: New file.
2989
2990 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2991
2992 * sysdeps/s390/multiarch/Makefile
2993 (sysdep_routines): Remove rawmemchr variants.
2994 * sysdeps/s390/Makefile (sysdep_routines): Add rawmemchr variants.
2995 * sysdeps/s390/multiarch/ifunc-impl-list.c
2996 (__libc_ifunc_impl_list): Refactor ifunc handling for rawmemchr.
2997 * sysdeps/s390/multiarch/rawmemchr-c.c: Move to ...
2998 * sysdeps/s390/rawmemchr-c.c: ... here and adjust ifunc handling.
2999 * sysdeps/s390/multiarch/rawmemchr-vx.S: Move to ...
3000 * sysdeps/s390/rawmemchr-vx.S: ... here and adjust ifunc handling.
3001 * sysdeps/s390/multiarch/rawmemchr.c: Move to ...
3002 * sysdeps/s390/rawmemchr.c: ... here and adjust ifunc handling.
3003 * sysdeps/s390/ifunc-rawmemchr.h: New file.
3004
3005 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3006
3007 * sysdeps/s390/multiarch/Makefile
3008 (sysdep_routines): Remove memchr variants.
3009 * sysdeps/s390/Makefile (sysdep_routines): Add memchr variants.
3010 * sysdeps/s390/multiarch/ifunc-impl-list.c
3011 (__libc_ifunc_impl_list): Refactor ifunc handling for memchr.
3012 * sysdeps/s390/multiarch/memchr-vx.S: Move to ...
3013 * sysdeps/s390/memchr-vx.S: ... here and adjust ifunc handling.
3014 * sysdeps/s390/multiarch/memchr.c: Move to ...
3015 * sysdeps/s390/memchr.c: ... here and adjust ifunc handling.
3016 * sysdeps/s390/ifunc-memchr.h: New file.
3017 * sysdeps/s390/s390-64/memchr.S: Move to ...
3018 * sysdeps/s390/memchr-z900.S: ... here and adjust to be usable
3019 for 31/64bit and ifunc handling.
3020 * sysdeps/s390/s390-32/multiarch/memchr.c: Delete file.
3021 * sysdeps/s390/s390-64/multiarch/memchr.c: Likewise.
3022 * sysdeps/s390/s390-32/memchr.S: Likewise.
3023
3024 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3025
3026 * sysdeps/s390/multiarch/Makefile
3027 (sysdep_routines): Remove strcspn variants.
3028 * sysdeps/s390/Makefile (sysdep_routines): Add strcspn variants.
3029 * sysdeps/s390/multiarch/ifunc-impl-list.c
3030 (__libc_ifunc_impl_list): Refactor ifunc handling for strcspn.
3031 * sysdeps/s390/multiarch/strcspn-c.c: Move to ...
3032 * sysdeps/s390/strcspn-c.c: ... here and adjust ifunc handling.
3033 * sysdeps/s390/multiarch/strcspn-vx.S: Move to ...
3034 * sysdeps/s390/strcspn-vx.S: ... here and adjust ifunc handling.
3035 * sysdeps/s390/multiarch/strcspn.c: Move to ...
3036 * sysdeps/s390/strcspn.c: ... here and adjust ifunc handling.
3037 * sysdeps/s390/ifunc-strcspn.h: New file.
3038
3039 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3040
3041 * sysdeps/s390/multiarch/Makefile
3042 (sysdep_routines): Remove strpbrk variants.
3043 * sysdeps/s390/Makefile (sysdep_routines): Add strpbrk variants.
3044 * sysdeps/s390/multiarch/ifunc-impl-list.c
3045 (__libc_ifunc_impl_list): Refactor ifunc handling for strpbrk.
3046 * sysdeps/s390/multiarch/strpbrk-c.c: Move to ...
3047 * sysdeps/s390/strpbrk-c.c: ... here and adjust ifunc handling.
3048 * sysdeps/s390/multiarch/strpbrk-vx.S: Move to ...
3049 * sysdeps/s390/strpbrk-vx.S: ... here and adjust ifunc handling.
3050 * sysdeps/s390/multiarch/strpbrk.c: Move to ...
3051 * sysdeps/s390/strpbrk.c: ... here and adjust ifunc handling.
3052 * sysdeps/s390/ifunc-strpbrk.h: New file.
3053
3054 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3055
3056 * sysdeps/s390/multiarch/Makefile
3057 (sysdep_routines): Remove strspn variants.
3058 * sysdeps/s390/Makefile (sysdep_routines): Add strspn variants.
3059 * sysdeps/s390/multiarch/ifunc-impl-list.c
3060 (__libc_ifunc_impl_list): Refactor ifunc handling for strspn.
3061 * sysdeps/s390/multiarch/strspn-c.c: Move to ...
3062 * sysdeps/s390/strspn-c.c: ... here and adjust ifunc handling.
3063 * sysdeps/s390/multiarch/strspn-vx.S: Move to ...
3064 * sysdeps/s390/strspn-vx.S: ... here and adjust ifunc handling.
3065 * sysdeps/s390/multiarch/strspn.c: Move to ...
3066 * sysdeps/s390/strspn.c: ... here and adjust ifunc handling.
3067 * sysdeps/s390/ifunc-strspn.h: New file.
3068
3069 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3070
3071 * sysdeps/s390/multiarch/Makefile
3072 (sysdep_routines): Remove strrchr variants.
3073 * sysdeps/s390/Makefile (sysdep_routines): Add strrchr variants.
3074 * sysdeps/s390/multiarch/ifunc-impl-list.c
3075 (__libc_ifunc_impl_list): Refactor ifunc handling for strrchr.
3076 * sysdeps/s390/multiarch/strrchr-c.c: Move to ...
3077 * sysdeps/s390/strrchr-c.c: ... here and adjust ifunc handling.
3078 * sysdeps/s390/multiarch/strrchr-vx.S: Move to ...
3079 * sysdeps/s390/strrchr-vx.S: ... here and adjust ifunc handling.
3080 * sysdeps/s390/multiarch/strrchr.c: Move to ...
3081 * sysdeps/s390/strrchr.c: ... here and adjust ifunc handling.
3082 * sysdeps/s390/ifunc-strrchr.h: New file.
3083
3084 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3085
3086 * sysdeps/s390/multiarch/Makefile
3087 (sysdep_routines): Remove strchrnul variants.
3088 * sysdeps/s390/Makefile (sysdep_routines): Add strchrnul variants.
3089 * sysdeps/s390/multiarch/ifunc-impl-list.c
3090 (__libc_ifunc_impl_list): Refactor ifunc handling for strchrnul.
3091 * sysdeps/s390/multiarch/strchrnul-c.c: Move to ...
3092 * sysdeps/s390/strchrnul-c.c: ... here and adjust ifunc handling.
3093 * sysdeps/s390/multiarch/strchrnul-vx.S: Move to ...
3094 * sysdeps/s390/strchrnul-vx.S: ... here and adjust ifunc handling.
3095 * sysdeps/s390/multiarch/strchrnul.c: Move to ...
3096 * sysdeps/s390/strchrnul.c: ... here and adjust ifunc handling.
3097 * sysdeps/s390/ifunc-strchrnul.h: New file.
3098
3099 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3100
3101 * sysdeps/s390/multiarch/Makefile
3102 (sysdep_routines): Remove strchr variants.
3103 * sysdeps/s390/Makefile (sysdep_routines): Add strchr variants.
3104 * sysdeps/s390/multiarch/ifunc-impl-list.c
3105 (__libc_ifunc_impl_list): Refactor ifunc handling for strchr.
3106 * sysdeps/s390/multiarch/strchr-c.c: Move to ...
3107 * sysdeps/s390/strchr-c.c: ... here and adjust ifunc handling.
3108 * sysdeps/s390/multiarch/strchr-vx.S: Move to ...
3109 * sysdeps/s390/strchr-vx.S: ... here and adjust ifunc handling.
3110 * sysdeps/s390/multiarch/strchr.c: Move to ...
3111 * sysdeps/s390/strchr.c: ... here and adjust ifunc handling.
3112 * sysdeps/s390/ifunc-strchr.h: New file.
3113
3114 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3115
3116 * sysdeps/s390/multiarch/Makefile
3117 (sysdep_routines): Remove strncmp variants.
3118 * sysdeps/s390/Makefile (sysdep_routines): Add strncmp variants.
3119 * sysdeps/s390/multiarch/ifunc-impl-list.c
3120 (__libc_ifunc_impl_list): Refactor ifunc handling for strncmp.
3121 * sysdeps/s390/multiarch/strncmp-c.c: Move to ...
3122 * sysdeps/s390/strncmp-c.c: ... here and adjust ifunc handling.
3123 * sysdeps/s390/multiarch/strncmp-vx.S: Move to ...
3124 * sysdeps/s390/strncmp-vx.S: ... here and adjust ifunc handling.
3125 * sysdeps/s390/multiarch/strncmp.c: Move to ...
3126 * sysdeps/s390/strncmp.c: ... here and adjust ifunc handling.
3127 * sysdeps/s390/ifunc-strncmp.h: New file.
3128
3129 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3130
3131 * sysdeps/s390/multiarch/Makefile
3132 (sysdep_routines): Remove strcmp variants.
3133 * sysdeps/s390/Makefile (sysdep_routines): Add strcmp variants.
3134 * sysdeps/s390/multiarch/ifunc-impl-list.c
3135 (__libc_ifunc_impl_list): Refactor ifunc handling for strcmp.
3136 * sysdeps/s390/multiarch/strcmp-vx.S: Move to ...
3137 * sysdeps/s390/strcmp-vx.S: ... here and adjust ifunc handling.
3138 * sysdeps/s390/multiarch/strcmp.c: Move to ...
3139 * sysdeps/s390/strcmp.c: ... here and adjust ifunc handling.
3140 * sysdeps/s390/ifunc-strcmp.h: New file.
3141 * sysdeps/s390/s390-64/strcmp.S: Move to ...
3142 * sysdeps/s390/strcmp-z900.S: ... here and adjust to be usable
3143 for 31/64bit and ifunc handling.
3144 * sysdeps/s390/s390-32/multiarch/strcmp.c: Delete file.
3145 * sysdeps/s390/s390-64/multiarch/strcmp.c: Likewise.
3146 * sysdeps/s390/s390-32/strcmp.S: Likewise.
3147
3148 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3149
3150 * sysdeps/s390/multiarch/Makefile
3151 (sysdep_routines): Remove strncat variants.
3152 * sysdeps/s390/Makefile (sysdep_routines): Add strncat variants.
3153 * sysdeps/s390/multiarch/ifunc-impl-list.c
3154 (__libc_ifunc_impl_list): Refactor ifunc handling for strncat.
3155 * sysdeps/s390/multiarch/strncat-c.c: Move to ...
3156 * sysdeps/s390/strncat-c.c: ... here and adjust ifunc handling.
3157 * sysdeps/s390/multiarch/strncat-vx.S: Move to ...
3158 * sysdeps/s390/strncat-vx.S: ... here and adjust ifunc handling.
3159 * sysdeps/s390/multiarch/strncat.c: Move to ...
3160 * sysdeps/s390/strncat.c: ... here and adjust ifunc handling.
3161 * sysdeps/s390/ifunc-strncat.h: New file.
3162
3163 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3164
3165 * sysdeps/s390/multiarch/Makefile
3166 (sysdep_routines): Remove strcat variants.
3167 * sysdeps/s390/Makefile (sysdep_routines): Add strcat variants.
3168 * sysdeps/s390/multiarch/ifunc-impl-list.c
3169 (__libc_ifunc_impl_list): Refactor ifunc handling for strcat.
3170 * sysdeps/s390/multiarch/strcat-c.c: Move to ...
3171 * sysdeps/s390/strcat-c.c: ... here and adjust ifunc handling.
3172 * sysdeps/s390/multiarch/strcat-vx.S: Move to ...
3173 * sysdeps/s390/strcat-vx.S: ... here and adjust ifunc handling.
3174 * sysdeps/s390/multiarch/strcat.c: Move to ...
3175 * sysdeps/s390/strcat.c: ... here and adjust ifunc handling.
3176 * sysdeps/s390/ifunc-strcat.h: New file.
3177
3178 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3179
3180 * sysdeps/s390/multiarch/Makefile
3181 (sysdep_routines): Remove stpncpy variants.
3182 * sysdeps/s390/Makefile (sysdep_routines): Add stpncpy variants.
3183 * sysdeps/s390/multiarch/ifunc-impl-list.c
3184 (__libc_ifunc_impl_list): Refactor ifunc handling for stpncpy.
3185 * sysdeps/s390/multiarch/stpncpy-c.c: Move to ...
3186 * sysdeps/s390/stpncpy-c.c: ... here and adjust ifunc handling.
3187 * sysdeps/s390/multiarch/stpncpy-vx.S: Move to ...
3188 * sysdeps/s390/stpncpy-vx.S: ... here and adjust ifunc handling.
3189 * sysdeps/s390/multiarch/stpncpy.c: Move to ...
3190 * sysdeps/s390/stpncpy.c: ... here and adjust ifunc handling.
3191 * sysdeps/s390/ifunc-stpncpy.h: New file.
3192
3193 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3194
3195 * sysdeps/s390/multiarch/Makefile
3196 (sysdep_routines): Remove strncpy variants.
3197 * sysdeps/s390/Makefile (sysdep_routines): Add strncpy variants.
3198 * sysdeps/s390/multiarch/ifunc-impl-list.c
3199 (__libc_ifunc_impl_list): Refactor ifunc handling for strncpy.
3200 * sysdeps/s390/multiarch/strncpy-vx.S: Move to ...
3201 * sysdeps/s390/strncpy-vx.S: ... here and adjust ifunc handling.
3202 * sysdeps/s390/multiarch/strncpy.c: Move to ...
3203 * sysdeps/s390/strncpy.c: ... here and adjust ifunc handling.
3204 * sysdeps/s390/ifunc-strncpy.h: New file.
3205 * sysdeps/s390/s390-64/strncpy.S: Move to ...
3206 * sysdeps/s390/s390-64/strncpy-z900.S: ... here
3207 and adjust ifunc handling.
3208 * sysdeps/s390/s390-32/strncpy.S: Move to ...
3209 * sysdeps/s390/s390-32/strncpy-z900.S: ... here
3210 and adjust ifunc handling.
3211 * sysdeps/s390/s390-32/multiarch/strncpy.c: Delete file.
3212 * sysdeps/s390/s390-64/multiarch/strncpy.c: Likewise.
3213
3214 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3215
3216 * sysdeps/s390/multiarch/Makefile
3217 (sysdep_routines): Remove stpcpy variants.
3218 * sysdeps/s390/Makefile (sysdep_routines): Add stpcpy variants.
3219 * sysdeps/s390/multiarch/ifunc-impl-list.c
3220 (__libc_ifunc_impl_list): Refactor ifunc handling for stpcpy.
3221 * sysdeps/s390/multiarch/stpcpy-c.c: Move to ...
3222 * sysdeps/s390/stpcpy-c.c: ... here and adjust ifunc handling.
3223 * sysdeps/s390/multiarch/stpcpy-vx.S: Move to ...
3224 * sysdeps/s390/stpcpy-vx.S: ... here and adjust ifunc handling.
3225 * sysdeps/s390/multiarch/stpcpy.c: Move to ...
3226 * sysdeps/s390/stpcpy.c: ... here and adjust ifunc handling.
3227 * sysdeps/s390/ifunc-stpcpy.h: New file.
3228
3229 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3230
3231 * sysdeps/s390/multiarch/Makefile
3232 (sysdep_routines): Remove strcpy variants.
3233 * sysdeps/s390/Makefile (sysdep_routines): Add strcpy variants.
3234 * sysdeps/s390/multiarch/ifunc-impl-list.c
3235 (__libc_ifunc_impl_list): Refactor ifunc handling for strcpy.
3236 * sysdeps/s390/multiarch/strcpy-vx.S: Move to ...
3237 * sysdeps/s390/strcpy-vx.S: ... here and adjust ifunc handling.
3238 * sysdeps/s390/multiarch/strcpy.c: Move to ...
3239 * sysdeps/s390/strcpy.c: ... here and adjust ifunc handling.
3240 * sysdeps/s390/ifunc-strcpy.h: New file.
3241 * sysdeps/s390/s390-64/strcpy.S: Move to ...
3242 * sysdeps/s390/strcpy-z900.S: ... here and adjust to be usable
3243 for 31/64bit and ifunc handling.
3244 * sysdeps/s390/s390-32/multiarch/strcpy.c: Delete file.
3245 * sysdeps/s390/s390-64/multiarch/strcpy.c: Likewise.
3246 * sysdeps/s390/s390-32/strcpy.S: Likewise.
3247
3248 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3249
3250 * sysdeps/s390/multiarch/Makefile
3251 (sysdep_routines): Remove strnlen variants.
3252 * sysdeps/s390/Makefile (sysdep_routines): Add strnlen variants.
3253 * sysdeps/s390/multiarch/ifunc-impl-list.c
3254 (__libc_ifunc_impl_list): Refactor ifunc handling for strnlen.
3255 * sysdeps/s390/multiarch/strnlen-c.c: Move to ...
3256 * sysdeps/s390/strnlen-c.c: ... here and adjust ifunc handling.
3257 * sysdeps/s390/multiarch/strnlen-vx.S: Move to ...
3258 * sysdeps/s390/strnlen-vx.S: ... here and adjust ifunc handling.
3259 * sysdeps/s390/multiarch/strnlen.c: Move to ...
3260 * sysdeps/s390/strnlen.c: ... here and adjust ifunc handling.
3261 * sysdeps/s390/ifunc-strnlen.h: New file.
3262
3263 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3264
3265 * sysdeps/s390/multiarch/Makefile
3266 (sysdep_routines): Remove strlen variants.
3267 * sysdeps/s390/Makefile (sysdep_routines): Add strlen variants.
3268 * sysdeps/s390/multiarch/ifunc-impl-list.c
3269 (__libc_ifunc_impl_list): Refactor ifunc handling for strlen.
3270 * sysdeps/s390/multiarch/strlen-c.c: Move to ...
3271 * sysdeps/s390/strlen-c.c: ... here and adjust ifunc handling.
3272 * sysdeps/s390/multiarch/strlen-vx.S: Move to ...
3273 * sysdeps/s390/strlen-vx.S: ... here and adjust ifunc handling.
3274 * sysdeps/s390/multiarch/strlen.c: Move to ...
3275 * sysdeps/s390/strlen.c: ... here and adjust ifunc handling.
3276 * sysdeps/s390/ifunc-strlen.h: New file.
3277
3278 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3279
3280 * sysdeps/s390/Makefile (sysdep_routines): Add memmem variants.
3281 * sysdeps/s390/multiarch/ifunc-impl-list.c
3282 (__libc_ifunc_impl_list): Add ifunc variants for memmem.
3283 * sysdeps/s390/ifunc-memmem.h: New file.
3284 * sysdeps/s390/memmem.c: Likewise.
3285 * sysdeps/s390/memmem-c.c: Likewise.
3286 * sysdeps/s390/memmem-vx.c: Likewise.
3287
3288 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3289
3290 * sysdeps/s390/Makefile (sysdep_routines): Add strstr variants.
3291 * sysdeps/s390/multiarch/ifunc-impl-list.c
3292 (__libc_ifunc_impl_list): Add ifunc variants for strstr.
3293 * sysdeps/s390/ifunc-strstr.h: New file.
3294 * sysdeps/s390/strstr.c: Likewise.
3295 * sysdeps/s390/strstr-c.c: Likewise.
3296 * sysdeps/s390/strstr-vx.c: Likewise.
3297
3298 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3299
3300 * sysdeps/s390/Makefile (sysdep_routines): Add memmove-c.
3301 * sysdeps/s390/ifunc-memcpy.h (HAVE_MEMMOVE_IFUNC,
3302 HAVE_MEMMOVE_IFUNC_AND_VX_SUPPORT, MEMMOVE_DEFAULT,
3303 HAVE_MEMMOVE_C, MEMMOVE_C, HAVE_MEMMOVE_Z13, MEMMOVE_Z13):
3304 New defines.
3305 * sysdeps/s390/memcpy-z900.S: Add z13 memmove implementation.
3306 * sysdeps/s390/memmove-c.c: New file.
3307 * sysdeps/s390/memmove.c: Likewise.
3308 * sysdeps/s390/multiarch/ifunc-impl-list.c
3309 (__libc_ifunc_impl_list): Add ifunc variants for memmove.
3310
3311 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3312
3313 * config.h.in (HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT): New undefine.
3314 * sysdeps/s390/configure.ac: Add check for z13 support.
3315 * sysdeps/s390/configure: Regenerated.
3316
3317 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3318
3319 * sysdeps/s390/memcopy.h: New file.
3320
3321 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3322
3323 * sysdeps/s390/s390-32/bcopy.S: Remove.
3324 * sysdeps/s390/s390-64/bcopy.S: Likewise.
3325
3326 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3327
3328 * sysdeps/s390/ifunc-memcpy.h: New File.
3329 * sysdeps/s390/memcpy.S: Move to ...
3330 * sysdeps/s390/memcpy-z900.S ... here.
3331 Move implementations from memcpy-s390x.s to here.
3332 * sysdeps/s390/multiarch/memcpy-s390x.S: Delete File.
3333 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3334 Remove memcpy/mempcpy variants.
3335 * sysdeps/s390/Makefile (sysdep_routines):
3336 Add memcpy/mempcpy variants.
3337 * sysdeps/s390/multiarch/ifunc-impl-list.c
3338 (__libc_ifunc_impl_list): Adjust ifunc variants for
3339 memcpy and mempcpy.
3340 * sysdeps/s390/multiarch/memcpy.c: Move ifunc resolver
3341 to ...
3342 * sysdeps/s390/memcpy.c: ... here.
3343 Adjust ifunc variants for memcpy.
3344 * sysdeps/s390/multiarch/mempcpy.c: Move to ...
3345 * sysdeps/s390/mempcpy.c: ... here.
3346 Adjust ifunc variants for mempcpy.
3347 * sysdeps/s390/mempcpy.S: Delete file.
3348
3349 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3350
3351 * sysdeps/s390/s390-64/memcpy.S: Move to ...
3352 * sysdeps/s390/memcpy.S: ... here.
3353 Adjust to be usable for 31/64bit.
3354 * sysdeps/s390/s390-32/memcpy.S: Delete File.
3355 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcpy.
3356 * sysdeps/s390/s390-32/multiarch/Makefile: Delete file.
3357 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3358 * sysdeps/s390/s390-64/multiarch/memcpy-s390x.S: Move to ...
3359 * sysdeps/s390/multiarch/memcpy-s390x.S: ... here.
3360 Adjust to be usable for 31/64bit.
3361 * sysdeps/s390/s390-32/multiarch/memcpy-s390.S: Delete File.
3362 * sysdeps/s390/s390-64/multiarch/memcpy.c: Move to ...
3363 * sysdeps/s390/multiarch/memcpy.c: ... here.
3364 * sysdeps/s390/s390-32/multiarch/memcpy.c: Delete File.
3365
3366 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3367
3368 * sysdeps/s390/ifunc-memcmp.h: New File.
3369 * sysdeps/s390/memcmp.S: Move to ...
3370 * sysdeps/s390/memcmp-z900.S ... here.
3371 Move implementations from memcmp-s390x.s to here.
3372 * sysdeps/s390/multiarch/memcmp-s390x.S: Delete File.
3373 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3374 Remove memcmp variants.
3375 * sysdeps/s390/Makefile (sysdep_routines):
3376 Add memcmp variants.
3377 * sysdeps/s390/multiarch/ifunc-impl-list.c
3378 (__libc_ifunc_impl_list): Adjust ifunc variants for
3379 memcmp.
3380 * sysdeps/s390/multiarch/memcmp.c: Move ifunc resolver
3381 to ...
3382 * sysdeps/s390/memcmp.c: ... here.
3383 Adjust ifunc variants for memcmp.
3384
3385 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3386
3387 * sysdeps/s390/s390-64/memcmp.S: Move to ...
3388 * sysdeps/s390/memcmp.S: ... here.
3389 Adjust to be usable for 31/64bit.
3390 * sysdeps/s390/s390-32/memcmp.S: Delete File.
3391 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcmp.
3392 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
3393 Remove memcmp.
3394 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3395 * sysdeps/s390/s390-64/multiarch/memcmp-s390x.S: Move to ...
3396 * sysdeps/s390/multiarch/memcmp-s390x.S: ... here.
3397 Adjust to be usable for 31/64bit.
3398 * sysdeps/s390/s390-32/multiarch/memcmp-s390.S: Delete File.
3399 * sysdeps/s390/s390-64/multiarch/memcmp.c: Move to ...
3400 * sysdeps/s390/multiarch/memcmp.c: ... here.
3401 * sysdeps/s390/s390-32/multiarch/memcmp.c: Delete File.
3402
3403 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3404
3405 * sysdeps/s390/s390-32/bzero.S: Delete file.
3406 * sysdeps/s390/s390-64/bzero.S: Likewise.
3407 * sysdeps/s390/Makefile (sysdep_routines): Add bzero.
3408 * sysdeps/s390/bzero.c: New file.
3409 * sysdeps/s390/memset-z900.S: Add bzero entry points.
3410 * sysdeps/s390/ifunc-memset.h: Add bzero function macros.
3411 * sysdeps/s390/multiarch/ifunc-impl-list.c
3412 (__libc_ifunc_impl_list): Add bzero ifunc variants.
3413
3414 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3415
3416 * sysdeps/s390/ifunc-memset.h: New File.
3417 * sysdeps/s390/memset.S: Move to ...
3418 * sysdeps/s390/memset-z900.S ... here.
3419 Move implementations from memset-s390x.s to here.
3420 * sysdeps/s390/multiarch/memset-s390x.S: Delete File.
3421 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3422 Remove memset variants.
3423 * sysdeps/s390/Makefile (sysdep_routines):
3424 Add memset variants.
3425 * sysdeps/s390/multiarch/ifunc-impl-list.c
3426 (__libc_ifunc_impl_list): Adjust ifunc variants for
3427 memset.
3428 * sysdeps/s390/multiarch/memset.c: Move ifunc resolver
3429 to ...
3430 * sysdeps/s390/memset.c: ... here.
3431 Adjust ifunc variants for memset.
3432
3433 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3434
3435 * sysdeps/s390/s390-64/memset.S: Move to ...
3436 * sysdeps/s390/memset.S: ... here.
3437 Adjust to be usable for 31/64bit.
3438 * sysdeps/s390/s390-32/memset.S: Delete File.
3439 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memset.
3440 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
3441 Remove memset.
3442 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3443 * sysdeps/s390/s390-64/multiarch/memset-s390x.S: Move to ...
3444 * sysdeps/s390/multiarch/memset-s390x.S: ... here.
3445 Adjust to be usable for 31/64bit.
3446 * sysdeps/s390/s390-32/multiarch/memset-s390.S: Delete File.
3447 * sysdeps/s390/s390-64/multiarch/memset.c: Move to ...
3448 * sysdeps/s390/multiarch/memset.c: ... here.
3449 * sysdeps/s390/s390-32/multiarch/memset.c: Delete File.
3450
3451 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3452
3453 * sysdeps/s390/multiarch/ifunc-resolve.h
3454 (s390_libc_ifunc_init, s390_libc_ifunc,
3455 s390_vx_libc_ifunc2_redirected): Use hwcap instead of dl_hwcap.
3456
3457 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3458
3459 * config.h.in (HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT): New undefine.
3460 * sysdeps/s390/configure.ac: Add check for z10 support.
3461 * sysdeps/s390/configure: Regenerated.
3462
3463 2018-12-18 H.J. Lu <hongjiu.lu@intel.com>
3464
3465 * sysdeps/i386/atomic-machine.h: Merged with ...
3466 * sysdeps/x86_64/atomic-machine.h: To ...
3467 * sysdeps/x86/atomic-machine.h: This. New file.
3468
3469 2018-12-18 Florian Weimer <fweimer@redhat.com>
3470
3471 Rewrite locale/gen-translit.pl in Python.
3472 * locale/Makefile (generated): Add C-translit.h.
3473 (before-compile): Add $(objpfx)C-translit.h.
3474 (C-translit.h): Move to $(objpfx). Create target directory.
3475 Build using Python script.
3476 * locale/gen-translit.py: New file.
3477 * locale/gen-translit.pl: Remove file.
3478 * locale/C-translit.h.in: Change comment character to '#' for
3479 easier parsing without a C preprocessor.
3480 * locale/C-translit.h: Remove generated file.
3481 * manual/install.texi (Tools for Compilation): Do not mention
3482 C-translit.h.
3483 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
3484 Remove locale/C-translit.h.
3485 * scripts/update-copyrights: Likewise.
3486 * INSTALL: Regenerate.
3487
3488 2018-12-18 Florian Weimer <fweimer@redhat.com>
3489
3490 [BZ #23995]
3491 * localedata/locales/bi_VU: Remove executable bit from file.
3492
3493 2018-12-17 Albert ARIBAUD <albert.aribaud@3adev.fr>
3494
3495 * include/time.h
3496 (__localtime64): Add.
3497 * manual/maint.texi: Document Y2038 symbol handling.
3498 * time/localtime.c
3499 (__localtime64): Add.
3500 [__TIMESIZE != 64] (__localtime): Turn into a wrapper.
3501
3502 2018-12-17 Joseph Myers <joseph@codesourcery.com>
3503
3504 * sysdeps/unix/sysv/linux/ia64/sysdep.h (ASM_CLOBBERS_6_COMMON):
3505 Do not clobber r12.
3506
3507 * scripts/glibcextract.py (compare_macro_consts): Take parameters
3508 to allow extra macros from first or second sources.
3509 * sysdeps/unix/sysv/linux/tst-mman-consts.py: New file.
3510 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
3511 (tests-special): Add $(objpfx)tst-mman-consts.out.
3512 ($(objpfx)tst-mman-consts.out): New makefile target.
3513
3514 2018-12-17 Mao Han <han_mao@c-sky.com>
3515
3516 * sysdeps/unix/sysv/linux/Makefile: Add statx_cp.c.
3517 * sysdeps/unix/sysv/linux/fxstat64.c: Add conditionals for kernel
3518 without stat64 system call support.
3519 * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise.
3520 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c: Likewise.
3521 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
3522 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c: Likewise.
3523 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c: Likewise.
3524 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c: Likewise.
3525 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c: Likewise.
3526 * sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c: New file.
3527 * sysdeps/unix/sysv/linux/statx_cp.c: Likewise.
3528 * sysdeps/unix/sysv/linux/statx_cp.h: Likewise.
3529 * sysdeps/unix/sysv/linux/wordsize-64/statx_cp.c: Likewise.
3530
3531 2018-12-15 Paul Eggert <eggert@cs.ucla.edu>
3532
3533 regex: fix storage-exhaustion error
3534 [BZ #18040]
3535 * posix/regexec.c (get_subexp):
3536 Do not continue if storage is exhausted.
3537
3538 2018-12-15 Assaf Gordon <assafgordon@gmail.com>
3539
3540 regex: fix heap-use-after-free error
3541 [BZ #18040]
3542 Problem reported by Saito Takaaki <tails.saito@gmail.com> in
3543 https://debbugs.gnu.org/32592
3544 Call stack get_subexp->get_subexp_sub->clean_state_log_if_needed may
3545 call extend_buffers which reallocates the re_string_t internal buffer.
3546 Local variable 'buf' was not updated in such case, resulting in
3547 use-after-free.
3548 * posix/regexec.c (get_subexp): Update 'buf' after call to
3549 get_subexp_sub.
3550
3551 2018-12-15 Florian Weimer <fweimer@redhat.com>
3552
3553 * support/blob_repeat.c (check_mul_overflow_size_t): New function.
3554 (minimum_stride_size): Use it.
3555 (support_blob_repeat_allocate): Likewise.
3556
3557 2018-12-14 Joseph Myers <joseph@codesourcery.com>
3558
3559 * sysdeps/x86/fpu/bits/mathinline.h (asinh): Remove inline
3560 definition.
3561 (acosh): Likewise.
3562 (atanh): Likewise.
3563
3564 2018-12-14 Florian Weimer <fweimer@redhat.com>
3565
3566 * manual/process.texi (Process Creation Concepts): Remove
3567 documentation of process (ID) lifetime. List more process
3568 creation functions. Reference Process Identification section.
3569 (Process Identification): Add information about process ID
3570 lifetime. Describe Linux thread/task IDs.
3571 * manual/signal.texi (Signaling Another Process): Mention that the
3572 signal is always sent to the process.
3573
3574 2018-12-14 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3575
3576 * misc/Makefile (tests): Remove tst-efgcvt. Add tst-dbl-efgcvt
3577 and tst-ldbl-efgcvt.
3578 * misc/tst-efgcvt.c: Renamed to misc/tst-efgcvt-template.c.
3579 * misc/tst-efgcvt-template.c: Renamed from misc/tst-efgcvt.c.
3580 (struct testcase, efcvt_func, efcvt_r_func, ecvt_tests)
3581 (fcvt_tests, output_error, output_r_error, do_test): Use the
3582 macros defined in tst-dbl-efgcvt.c and tst-ldbl-efgcvt.c to:
3583 select the type of floating-point variables and arguments; to
3584 produce extra tests for double and conversion specifiers for
3585 printf; and to set the names of called functions.
3586 * misc/tst-dbl-efgcvt.c: New file that defines the macros used
3587 in tst-efgcvt-template.c.
3588 * misc/tst-ldbl-efgcvt.c: Likewise.
3589
3590 2018-12-14 Stefan Liebler <stli@linux.ibm.com>
3591
3592 * nss/Makefile (tst-nss-test3.out): New rule.
3593
3594 2018-12-13 Joseph Myers <joseph@codesourcery.com>
3595
3596 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Do not
3597 clobber sp.
3598
3599 2018-12-13 fanjinke <fanjinke@hygon.cn>
3600
3601 * sysdeps/x86/cpu-features.c (init_cpu_features): Check for
3602 "HygonGenuine".
3603
3604 2018-12-13 Andreas Schwab <schwab@suse.de>
3605
3606 [BZ #23861]
3607 * nptl/pthread_rwlock_common.c: Reindent. Fix typos.
3608 (__pthread_rwlock_rdlock_full): Update expected value for
3609 __readers while waiting on PTHREAD_RWLOCK_RWAITING.
3610 * nptl/tst-rwlock-pwn.c: New file.
3611 * nptl/Makefile (tests): Add tst-rwlock-pwn.
3612
3613 2018-12-12 Joseph Myers <joseph@codesourcery.com>
3614
3615 * sysdeps/x86/fpu/bits/mathinline.h (hypot): Remove inline
3616 definition.
3617
3618 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3619
3620 * benchtests/scripts/compare_bench.py (do_compare): write to
3621 stderr in casestat is not present.
3622 * benchtests/scripts/compare_bench.py (plot_graphs): write to
3623 stderr in case timings field is not present. Also string showing
3624 the output filename goes into the stderr.
3625
3626 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3627
3628 * benchtests/scripts/compare_bench.py (do_compare): Catch KeyError
3629 and ZeroDivisorError exceptions.
3630 * benchtests/scripts/compare_bench.py (compare_runs): Use stats
3631 argument to loop through user provided statistics.
3632 * benchtests/scripts/compare_bench.py (main): Include the --stats
3633 argument.
3634
3635 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3636
3637 * benchtests/scripts/compare_bench.py (compare_runs): Continue
3638 instead of return.
3639
3640 2018-12-12 Florian Weimer <fweimer@redhat.com>
3641
3642 * sysdeps/posix/timespec_get.c: Add missing “any later version”
3643 clause to copyright header.
3644
3645 2018-12-12 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
3646
3647 [BZ #23614]
3648 * sysdeps/powerpc/powerpc64/addmul_1.S (FUNC): Add CFI offset for
3649 registers saved in the stack frame.
3650 * sysdeps/powerpc/powerpc64/lshift.S (__mpn_lshift): Likewise.
3651 * sysdeps/powerpc/powerpc64/mul_1.S (__mpn_mul_1): Likewise.
3652
3653 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3654
3655 * include/bits/monetary-ldbl.h: New file.
3656 * include/bits/printf-ldbl.h: Likewise.
3657 * include/bits/stdio-ldbl.h: Likewise.
3658 * include/bits/stdlib-ldbl.h: Likewise.
3659 * include/bits/syslog-ldbl.h: Likewise.
3660 * include/bits/wchar-ldbl.h: Likewise.
3661
3662 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3663
3664 * libio/libio.h: Remove redirection for _IO_vfprintf.
3665
3666 2018-12-11 Andreas Schwab <schwab@suse.de>
3667
3668 * Makerules: Remove all references to abilist-pattern.
3669 (update-all-abi): Simplify find expression.
3670
3671 2018-12-11 Szabolcs Nagy <szabolcs.nagy@arm.com>
3672
3673 [BZ #23961]
3674 * math/auto-libm-test-in: Add new test case.
3675 * math/auto-libm-test-out-pow: Regenerated.
3676 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Fix overflow check.
3677
3678 2018-12-10 DJ Delorie <dj@redhat.com>
3679
3680 [BZ #23948]
3681 * support/test-container.c: Move postclean step to before we
3682 change namespaces.
3683
3684 2018-12-10 Joseph Myers <joseph@codesourcery.com>
3685
3686 * scripts/gen-as-const.py (main): Handle --python option.
3687 * scripts/gen-py-const.awk: Remove.
3688 * Makerules (py-const-script): Use gen-as-const.py.
3689 ($(py-const)): Likewise.
3690 * nptl/nptl-printers.py (MutexPrinter.read_status_no_robust): Mask
3691 with 0xffffffff together with ~(PTHREAD_MUTEX_PRIO_CEILING_MASK).
3692 (MutexAttributesPrinter.read_values): Mask with 0xffffffff
3693 together with ~PTHREAD_MUTEXATTR_FLAG_BITS and
3694 ~PTHREAD_MUTEX_NO_ELISION_NP.
3695 * manual/README.pretty-printers: Update reference to
3696 gen-py-const.awk.
3697
3698 * scripts/glibcextract.py: New file.
3699 * scripts/gen-as-const.py: Do not import os.path, re, subprocess
3700 or tempfile. Import glibcexctract.
3701 (compute_c_consts): Remove. Moved to glibcextract.py.
3702 (gen_test): Update reference to compute_c_consts.
3703 (main): Likewise.
3704 * sysdeps/unix/sysv/linux/tst-signal-numbers.py: New file.
3705 * sysdeps/unix/sysv/linux/tst-signal-numbers.sh: Remove.
3706 * sysdeps/unix/sysv/linux/Makefile
3707 ($(objpfx)tst-signal-numbers.out): Use tst-signal-numbers.py.
3708 Redirect stderr as well as stdout.
3709
3710 2018-12-10 Rafael Ávila de Espíndola <rafael@espindo.la>
3711
3712 [BZ #19767]
3713 * sysdeps/unix/sysv/linux/mips/init-first.c: Remove #ifdef SHARED.
3714 * sysdeps/unix/sysv/linux/mips/libc-vdso.h: Remove #ifdef SHARED.
3715 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h: Define
3716 ALWAYS_USE_VSYSCALL.
3717 * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h: Define
3718 ALWAYS_USE_VSYSCALL.
3719 * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h: Define
3720 ALWAYS_USE_VSYSCALL.
3721
3722 2018-12-10 Florian Weimer <fweimer@redhat.com>
3723
3724 [BZ #23972]
3725 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): Check
3726 offset instead of count for clarity. Fix typo in comment.
3727 (__old_getdents64): Keep track of previous offset. Use it to call
3728 handle_overflow.
3729 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c (do_test): Check
3730 that d_off is never zero.
3731
3732 2018-12-10 Andreas Schwab <schwab@suse.de>
3733
3734 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*-le.abilist: Move to
3735 sysdeps/unix/sysv/linux/powerpc/powerpc64/le/*.abilist.
3736 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*.abilist: Move to
3737 sysdeps/unix/sysv/linux/powerpc/powerpc64/be/*.abilist.
3738 * sysdeps/powerpc/Makefile (abilist-pattern): Don't define.
3739
3740 2018-12-10 Joseph Myers <joseph@codesourcery.com>
3741
3742 * timezone/private.h: Update from tzcode 2018g.
3743 * timezone/tzfile.h: Likewise.
3744 * timezone/tzselect.ksh: Likewise.
3745 * timezone/zdump.c: Likewise.
3746 * timezone/zic.c: Likewise.
3747
3748 2018-12-08 Paul Pluzhnikov <ppluzhnikov@google.com>
3749
3750 [BZ #23490]
3751 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c
3752 (do_test): Adjust buffer size and fix format.
3753
3754 2018-12-07 DJ Delorie <dj@redhat.com>
3755
3756 [BZ #23907]
3757 * malloc/tst-tcfree3.c: New.
3758 * malloc/Makefile: Add it.
3759
3760 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
3761
3762 * include/sched.h (__getcpu): Don't use __typeof__ (getcpu).
3763
3764 2018-12-07 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3765
3766 * libio/libioP.h (SCANF_LDBL_USES_FLOAT128): New macro to be
3767 used as a mask for the mode argument of __vfscanf_internal and
3768 __vfwscanf_internal.
3769 * stdio-common/vfscanf-internal.c
3770 [defined COMPILE_WSCANF && __HAVE_FLOAT128_UNLIKE_LDBL]
3771 (__strtof128_internal): Define to __wcstof128_internal.
3772 [__HAVE_FLOAT128_UNLIKE_LDBL] (__vfscanf_internal): Call
3773 __strtof128_internal or __wcstof128_internal when the format of
3774 long double is the same as _Float128.
3775
3776 2018-12-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
3777
3778 * include/unistd.h (__confstr): Add prototype and hidden prototype.
3779 * posix/confstr.c (confstr): Rename to __confstr.
3780 (__confstr): Add hidden def.
3781 (confstr): Add weak alias for __confstr.
3782 * sysdeps/mach/hurd/spawni.c (__spawni): Call __confstr instead of
3783 confstr.
3784
3785 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
3786
3787 * NEWS: Mention getcpu.
3788 * include/sched.h (__getcpu): New libc_hidden_proto.
3789 * manual/resource.texi: Document getcpu.
3790 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add getcpu.
3791 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.29): Add getcpu.
3792 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add getcpu.
3793 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
3794 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
3795 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
3796 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
3797 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
3798 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
3799 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
3800 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
3801 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
3802 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
3803 Likewise.
3804 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
3805 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
3806 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
3807 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
3808 Likewise.
3809 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
3810 Likewise.
3811 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
3812 Likewise.
3813 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
3814 Likewise.
3815 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
3816 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
3817 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
3818 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
3819 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
3820 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
3821 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
3822 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
3823 * sysdeps/unix/sysv/linux/bits/sched.h (getcpu): New prototype.
3824 * sysdeps/unix/sysv/linux/getcpu.c: New file.
3825 * sysdeps/unix/sysv/linux/tst-skeleton-affinity.c (test_size):
3826 Also check getcpu.
3827
3828 2018-12-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
3829
3830 * sysdeps/mach/hurd/spawni.c (child_lookup_under, child_fchdir): New
3831 functions.
3832 (__spawni): Handle spawn_do_fchdir by calling child_fchdir.
3833
3834 2018-12-07 Florian Weimer <fweimer@redhat.com>
3835
3836 [BZ #17405]
3837 * posix/Makefile (routines): Add spawn_faction_addfchdir.
3838 * posix/Versions (GLIBC_2.29): Export
3839 posix_spawn_file_actions_addfchdir_np.
3840 * posix/spawn.h (posix_spawn_file_actions_addfchdir_np): Declare.
3841 * posix/spawn_faction_destroy.c
3842 (__posix_spawn_file_actions_destroy): Handle spawn_do_fchdir.
3843 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_fchdir
3844 and the field action.fchdir_action.
3845 * posix/tst-spawn-chdir.c (add_chdir): New function.
3846 (do_test): Add do_fchdir loop. Call add_chdir.
3847 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_fchdir.
3848 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
3849 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
3850 posix_spawn_file_actions_addfchdir_np.
3851 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
3852 Likewise.
3853 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
3854 Likewise.
3855 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
3856 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
3857 Likewise.
3858 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
3859 Likewise.
3860 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
3861 Likewise.
3862 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
3863 Likewise.
3864 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
3865 Likewise.
3866 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
3867 Likewise.
3868 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
3869 (GLIBC_2.29): Likewise.
3870 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
3871 (GLIBC_2.29): Likewise.
3872 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
3873 (GLIBC_2.29): Likewise.
3874 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
3875 (GLIBC_2.29): Likewise.
3876 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
3877 Likewise.
3878 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
3879 (GLIBC_2.29): Likewise.
3880 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
3881 (GLIBC_2.29): Likewise.
3882 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
3883 (GLIBC_2.29): Likewise.
3884 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
3885 (GLIBC_2.29): Likewise.
3886 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
3887 Likewise.
3888 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
3889 Likewise.
3890 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
3891 Likewise.
3892 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
3893 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
3894 Likewise.
3895 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
3896 Likewise.
3897 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
3898 Likewise.
3899 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
3900 Likewise.
3901
3902 2018-12-06 Joseph Myers <joseph@codesourcery.com>
3903
3904 * manual/texinfo.tex: Update to version 2018-09-21.20 with
3905 trailing whitespace removed.
3906 * scripts/config.guess: Update to version 2018-11-28.
3907 * scripts/config.sub: Update to version 2018-11-28.
3908 * scripts/install-sh: Update to version 2018-03-11.20.
3909 * scripts/mkinstalldirs: Update to version 2018-03-07.03.
3910 * scripts/move-if-change: Update to version 2018-03-07 03:47.
3911
3912 2018-12-07 Florian Weimer <fweimer@redhat.com>
3913
3914 [BZ #23927]
3915 CVE-2018-19591
3916 * inet/tst-if_index-long.c: New file.
3917 * inet/Makefile (tests): Add tst-if_index-long.
3918
3919 2018-12-07 Florian Weimer <fweimer@redhat.com>
3920
3921 * support/check.h (support_record_failure_is_failed): Declare.
3922 * support/descriptors.h: New file.
3923 * support/support_descriptors.c: Likewise.
3924 * support/tst-support_descriptors.c: Likewise.
3925 * support/support_record_failure.c
3926 (support_record_failure_is_failed): New function.
3927 * support/Makefile (libsupport-routines): Add support_descriptors.
3928 (tests): Add tst-support_descriptors.
3929
3930 2018-12-05 Zack Weinberg <zackw@panix.com>
3931 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3932
3933 * stdio-common/vfprintf-internal.c
3934 (__vfprintf_internal, __vfwprintf_internal): Don't use __ldbl_is_dbl.
3935 * sysdeps/generic/math_ldbl_opt.h: Remove __ldbl_is_dbl.
3936 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Remove __ldbl_is_dbl
3937 and __no_long_double.
3938 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.c: Remove file.
3939 * sysdeps/ieee754/ldbl-opt/Makefile (routines): Remove math_ldbl_opt.
3940 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Remove
3941 libc_hidden_proto and libc_hidden_def from all __nldbl_*printf*
3942 and __nldbl_*syslog* functions.
3943 (__nldbl_cleanup, set_no_long_double, clear_no_long_double): Remove.
3944 (__nldbl___asprintf, __nldbl_dprintf, __nldbl_fprintf)
3945 (__nldbl_fwprintf, __nldbl_printf, __nldbl_sprintf)
3946 (__nldbl_vfprintf, __nldbl___vsprintf, __nldbl_obstack_vprintf)
3947 (__ndlbl_obstack_printf, __nldbl_snprintf, __nldbl_swprintf)
3948 (__nldbl_vasprintf, __nldbl_vdprintf, __nldbl_vfwprintf)
3949 (__nldbl_vprintf, __nldbl_vsnprintf, __ndlbl_vswprintf)
3950 (__nldbl_vwprintf, __nldbl_wprintf):
3951 Directly call the appropriate __v*printf_internal routine, passing
3952 PRINTF_LDBL_IS_DBL. Do not mess with __no_long_double. Normalize
3953 variable names.
3954 (__nldbl___fprintf_chk, __nldbl___fwprintf_chk)
3955 (__nldbl___printf_chk, __nldbl___snprintf_chk)
3956 (__nldbl___sprintf_chk, __nldbl___swprintf_chk)
3957 (__nldbl___vfprintf_chk, __nldbl___vfwprintf_chk)
3958 (__nldbl___vprintf_chk, __nldbl___vsnprintf_chk)
3959 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
3960 (__nldbl___vwprintf_chk, __nldbl___wprintf_chk)
3961 (__nldbl___vasprintf_chk, __nldbl___asprintf_chk)
3962 (__nldbl___vdprintf_chk, __nldbl___dprintf_chk)
3963 (__nldbl___obstack_vprintf_chk, __nldbl___obstack_printf_chk):
3964 Likewise, and also pass PRINTF_FORTIFY when appropriate.
3965 (__nldbl_syslog, __nldbl_vsyslog):
3966 Directly call __vsyslog_internal, passing PRINTF_LDBL_IS_DBL.
3967 (__nldbl_syslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3968 appropriate.
3969 (__nldbl_vsyslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3970 appropriate.
3971
3972 2018-12-05 Zack Weinberg <zackw@panix.com>
3973 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3974
3975 [BZ #11319]
3976 * libio/iovsprintf.c (_IO_str_chk_overflow, libio_vtable):
3977 Moved here from debug/vsprintf_chk.c.
3978 (__vsprintf_internal): Add 'maxlen' argument. Change the setup
3979 and completion logic for the strfile to match exactly what
3980 __vsprintf_chk used to do, except, when maxlen is -1, pass -1 to
3981 _IO_str_init_static_internal instead of maxlen-1.
3982 (__vsprintf): Pass -1 as maxlen to __vsprintf_internal.
3983 * stdio-common/sprintf.c (__sprintf): Pass -1 as maxlen to
3984 __vsprintf_internal.
3985
3986 * debug/vsprintf_chk.c (__vsprintf_chk)
3987 * debug/sprintf_chk.c (__sprintf_chk):
3988 Directly call __vsprintf_internal, passing PRINTF_FORTIFY if
3989 'flags' argument is positive, and slen as maxlen. No need to lock
3990 the FILE and/or construct a temporary FILE. Minimize and normalize
3991 header inclusions and variable names. Do not libc_hidden_def anything.
3992
3993 * debug/asprintf_chk.c (__asprintf_chk)
3994 * debug/dprintf_chk.c (__dprintf_chk)
3995 * debug/fprintf_chk.c (__fprintf_chk)
3996 * debug/fwprintf_chk.c (__fwprintf_chk)
3997 * debug/printf_chk.c (__printf_chk)
3998 * debug/snprintf_chk.c (__snprintf_chk)
3999 * debug/swprintf_chk.c (__swprintf_chk)
4000 * debug/vasprintf_chk.c (__vasprintf_chk)
4001 * debug/vdprintf_chk.c (__vdprintf_chk)
4002 * debug/vfprintf_chk.c (__vfprintf_chk)
4003 * debug/vfwprintf_chk.c (__vfwprintf_chk)
4004 * debug/vprintf_chk.c (__vprintf_chk)
4005 * debug/vsnprintf_chk.c (__vsnprintf_chk)
4006 * debug/vswprintf_chk.c (__vswprintf_chk)
4007 * debug/vwprintf_chk.c (__vwprintf_chk)
4008 * debug/wprintf_chk.c (__wprintf_chk):
4009 Directly call the corresponding vxxprintf_internal function, passing
4010 PRINTF_FORTIFY if 'flag' argument is positive. No need to lock
4011 the FILE and/or construct a temporary FILE. Minimize and normalize
4012 header inclusions and variable names. Do not libc_hidden_def anything.
4013
4014 * debug/obprintf_chk.c (__obstack_printf_chk): Directly call
4015 __obstack_vprintf_internal.
4016 (__obstack_vprintf_chk): Convert into a wrapper that calls
4017 __obstack_vprintf_internal (these two functions already had the
4018 same code) and move to new file...
4019 * debug/vobprintf_chk.c (__obstack_vprintf_chk): ... here. New
4020 file.
4021 * debug/obprintf.c (__obstack_vprintf_internal): Remove the checking of
4022 the flags argument and the setting of _IO_FLAGS2_FORTIFY.
4023 * debug/Makefile (routines): Add vobprintf_chk.
4024
4025 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
4026 (__nldbl___vsprintf): Pass -1 as maxlen to __vsprintf_internal.
4027 (__nldbl___vfprintf_chk, __nldbl___vsnprintf_chk)
4028 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
4029 (__nldbl___vasprintf_chk, __nldbl___vdprintf_chk)
4030 (__nldbl___obstack_vfprintf_chk):
4031 Directly call the corresponding vxxprintf_internal function,
4032 passing PRINTF_FORTIFY if 'flag' argument is positive. If necessary,
4033 duplicate comparison of slen with 0 or maxlen from the corresponding
4034 non-__nldbl function.
4035
4036 * include/stdio.h (__vsnprintf_chk, __vfprintf_chk, __vasprintf_chk)
4037 (__vdprintf_chk, __obstack_vfprintf_chk): Remove libc_hidden_proto.
4038 * include/wchar.h (__vfwprintf_chk, __vswprintf_chk):
4039 Remove libc_hidden_proto.
4040
4041 * stdio-common/vfprintf-internal.c
4042 (__vfprintf_internal, __vfwprintf_internal):
4043 Do not check _IO_FLAGS2_FORTIFY.
4044 * libio/libio.h (_IO_FLAGS2_FORTIFY): Remove.
4045 * libio/libioP.h: Update prototype of __vsprintf_internal and add
4046 a comment explaining why it has the maxlen argument.
4047 (_IO_acquire_lock_clear_flags2_fct): Remove.
4048 (_IO_acquire_lock_clear_flags2): Remove.
4049 (_IO_release_lock): Remove conditional statement which will
4050 now never execute.
4051 (_IO_acquire_lock): Remove variable which is now unused.
4052 * sysdeps/generic/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
4053 * sysdeps/nptl/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
4054
4055 * stdio-common/Makefile (tests): Add tst-bz11319 and
4056 tst-bz11319-fortify2.
4057 (CFLAGS-tst-bz11319-fortify2.c): New macro.
4058 * stdio-common/tst-bz11319-fortify2.c: New file.
4059 * stdio-common/tst-bz11319.c: Likewise.
4060
4061 2018-12-05 Zack Weinberg <zackw@panix.com>
4062 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4063
4064 * misc/syslog.c: Include libioP.h, not iolibio.h.
4065 (__vsyslog_internal): New function with the former body of
4066 __vsyslog_chk; takes mode_flags argument same as
4067 __v*printf_internal. Call __vfprintf_internal directly.
4068
4069 (__vsyslog_chk): Now a wrapper around __vsyslog_internal.
4070 Remove libc_hidden_def.
4071 (__syslog, __syslog_chk): Use __vsyslog_internal.
4072 (__vsyslog): Move to just below __syslog. Use __vsyslog_internal.
4073
4074 * include/sys/syslog.h: Add multiple inclusion guard.
4075 Add prototype for __vsyslog_internal.
4076 Remove declaration and libc_hidden_proto for __vsyslog_chk.
4077
4078 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vsyslog_chk):
4079 Use __vsyslog_internal.
4080
4081 2018-12-05 Zack Weinberg <zackw@panix.com>
4082 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4083
4084 * libio/libioP.h (__vfprintf_internal, __vfwprintf_internal)
4085 (__vasprintf_internal, __vdprintf_internal, __obstack_vprintf_internal)
4086 (__vsprintf_internal, __vsnprintf_internal, __vswprintf_internal):
4087 New functions.
4088 (PRINTF_LDBL_IS_DBL, PRINTF_FORTIFY): New constants.
4089 (_IO_vasprintf, _IO_vdprintf, _IO_vsnprintf): Remove prototypes.
4090
4091 * stdio-common/vfprintf-internal.c: Rename from vfprintf.c.
4092 Include wctype.h here if COMPILE_WPRINTF is defined.
4093 Define __vfprintf_internal or __vfwprintf_internal, depending
4094 on COMPILE_WPRINTF.
4095 Temporarily, on entry to this function, update mode_flags
4096 according to the environmental settings corresponding to
4097 PRINTF_LDBL_IS_DBL and PRINTF_FORTIFY.
4098 Throughout, check mode_flags instead of __ldbl_is_dbl and
4099 _IO_FLAGS2_FORTIFY on the destination FILE.
4100 * stdio-common/vfwprintf-internal.c: Rename from vfwprintf.c.
4101 Include vfprintf-internal.c. Don't include wctype.h.
4102 * stdio-common/vfprintf.c: New file. Just define __vfprintf
4103 as a wrapper around __vfprintf_internal, with aliases _IO_vfprintf
4104 and vfprintf.
4105 * stdio-common/vfwprintf.c: New file. Just define __vfwprintf
4106 as a wrapper around __vfwprintf_internal, with aliases _IO_vfwprintf
4107 and vfwprintf.
4108 * stdio-common/Makefile: Add vfprintf-internal and vfwprintf-internal.
4109
4110 * libio/iovdprintf.c (_IO_vdprintf): Rename to __vdprintf_internal
4111 and add mode_flags argument; use __vfprintf_internal.
4112 (__vdprintf): New function. Alias vdprintf to this.
4113 * libio/iovsprintf.c (_IO_vsprintf, __vsprintf): Similarly.
4114 * libio/vasprintf.c (_IO_vasprintf, __vasprintf): Similarly.
4115 * libio/obprintf.c (_IO_obstack_vprintf, __obstack_vprintf): Similarly.
4116 (__obstack_printf): Use __obstack_printf_internal.
4117 * libio/vsnprintf.c (_IO_vsnprintf, ___vsnprintf): Similarly, with
4118 public aliases __vsnprintf and vsnprintf.
4119 Remove use of ldbl_hidden_def, since __vsnprintf is no longer
4120 called internally.
4121 * libio/vswprintf (_IO_vswprintf, __vswprintf): Similarly, with
4122 public aliases _IO_vsprintf and vsprintf.
4123 * libio/swprintf.c (__swprintf): Use __vswprintf_internal.
4124 * stdio-common/asprintf.c (__asprintf): Use __vasprintf_internal.
4125 * stdio-common/dprintf.c (__dprintf): Use __vdprintf_internal.
4126 * stdio-common/snprintf.c (__snprintf): Use __vsprintf_internal.
4127 * stdio-common/sprintf.c (__sprintf): Use __vsprintf_internal.
4128
4129 * debug/obprintf_chk.c, debug/vasprintf_chk.c, debug/vdprintf_chk.c
4130 * debug/vsnprintf_chk.c, debug/vsprintf_chk.c, hurd/vpprintf.c
4131 * stdio-common/fprintf.c, stdio-common/fxprintf.c
4132 * stdio-common/printf.c: Use __vfprintf_internal.
4133
4134 * debug/fwprintf_chk.c, debug/vfwprintf_chk.c, debug/vswprintf_chk.c
4135 * debug/vwprintf_chk.c, debug/wprintf_chk.c, libio/fwprintf.c
4136 * libio/vwprintf.c, libio/wprintf.c: Use __vfwprintf_internal.
4137
4138 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Use __vsprintf_internal,
4139 __obstack_vprintf_internal, __vasprintf_internal, __vdprintf_internal,
4140 __vsnprintf_internal, __vswprintf_internal, __vfprintf_internal, and
4141 __vfwprintf_internal.
4142
4143 * libio/libio.h: Remove libc_hidden_proto and declaration for
4144 _IO_vfprintf.
4145 Remove declaration of _IO_vfwprintf.
4146 * libio/iolibio.h: Remove libc_hidden_proto and declaration for
4147 _IO_vsprintf.
4148 Remove declarations of _IO_vswprintf, _IO_obstack_printf, and
4149 _IO_obstack_printf.
4150 * include/stdio.h: Add prototype for __vasprintf.
4151 (__vsnprintf): Remove declaration, because there are no more
4152 internal calls.
4153 * include/wchar.h (__vfwprintf, __vswprintf): Remove
4154 declaration, because there are no more internal calls.
4155
4156 * argp/argp-fmtstream.c (__argp_fmtstream_printf): Use
4157 __vsnprintf_internal, instead of _IO_vsnprintf.
4158 * argp/argp-help.c (__argp_error, __argp_failure): Use
4159 __vasprintf_internal, instead of _IO_vasprintf.
4160 * argp/argp-namefrob.h (__vsnprintf): Do not undefined then
4161 redefine, because there are no more internal calls.
4162
4163 2018-12-05 Zack Weinberg <zackw@panix.com>
4164 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4165
4166 * stdio-common/vfscanf-internal.c: Don't look at __ldbl_is_dbl.
4167 * sysdeps/ieee754/ldbl-opt/ndlbl-compat.c:
4168 Include libio/strfile.h instead of libioP.h.
4169 (__nldbl_IO_vfscanf, __ndlbl___vfscanf, __nldbl_sscanf)
4170 (__nldbl___vsscanf, __nldbl_vscanf, __nldbl_fscanf)
4171 (__nldbl_scanf, __nldbl_vfwscanf, __nldbl_swscanf)
4172 (__nldbl_vswscanf, __nldbl_vwscanf, __nldbl_fwscanf)
4173 (__nldbl_wscanf): Call __vfscanf_internal / __vfwscanf_internal
4174 directly, passing SCANF_LDBL_IS_DBL. Set up a strfile if
4175 necessary. Do not set __no_long_double. Normalize variable names.
4176 (__nldbl___isoc99_vfscanf, __nldbl___isoc99_sscanf)
4177 (__nldbl___isoc99_vsscanf, __nldbl___isoc99_vscanf)
4178 (__nldbl___isoc99_fscanf, __nldbl___isoc99_scanf)
4179 (__nldbl___isoc99_vfwscanf, __nldbl___isoc99_swscanf)
4180 (__nldbl___isoc99_vswscanf, __nldbl___isoc99_vwscanf)
4181 (__nldbl___isoc99_fwscanf, __nldbl___isoc99_wscanf):
4182 Call __vfscanf_internal / __vfwscanf_internal directly, passing
4183 SCANF_LDBL_IS_DBL | SCANF_ISOC99_A. Set up a strfile if necessary.
4184 Do not set __no_long_double. Normalize variable names.
4185
4186 2018-12-05 Zack Weinberg <zackw@panix.com>
4187 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4188
4189 * stdio-common/isoc99_scanf.c
4190 * stdio-common/isoc99_fscanf.c
4191 * stdio-common/isoc99_sscanf.c
4192 * stdio-common/isoc99_vscanf.c
4193 * stdio-common/isoc99_vfscanf.c
4194 * stdio-common/isoc99_vsscanf.c
4195 * wcsmbs/isoc99_wscanf.c
4196 * wcsmbs/isoc99_fwscanf.c
4197 * wcsmbs/isoc99_swscanf.c
4198 * wcsmbs/isoc99_vwscanf.c
4199 * wcsmbs/isoc99_vfwscanf.c
4200 * wcsmbs/isoc99_vswscanf.c:
4201 Pass SCANF_ISOC99_A to __vfscanf_internal and/or __vfwscanf_internal.
4202 Do not set _IO_FLAGS2_SCANF_STD on the FILE passed to that function.
4203 No need to lock and unlock the FILE passed to that function.
4204
4205 * stdio-common/vfscanf-internal.c
4206 (__vfscanf_internal, __vfwscanf_internal):
4207 Don't look at _IO_FLAGS2_SCANF_STD.
4208 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct)
4209 (_IO_release_lock): Don't clear _IO_FLAGS2_SCANF_STD.
4210 * libio/libio.h (_IO_FLAGS2_SCANF_STD): Delete.
4211
4212 2018-12-05 Zack Weinberg <zackw@panix.com>
4213 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4214
4215 * libio/libioP.h (SCANF_LDBL_IS_DBL, SCANF_ISOC99_A): New constants.
4216 (__vfscanf_internal, __vfwscanf_internal): New function prototypes.
4217 * libio/libio.h: Remove libc_hidden_proto for _IO_vfscanf.
4218 * libio/strfile.h: Add multiple inclusion guard.
4219 (_IO_strfile_read, _IO_strfile_readw): New inline functions.
4220
4221 * sysdeps/generic/math_ldbl_opt.h: Include shlib-compat.h, for
4222 consistency with the other version of this file.
4223 (ldbl_compat_symbol): New macro.
4224 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (ldbl_compat_symbol):
4225 New macro.
4226
4227 * stdio-common/vfscanf-internal.c: Rename from vfscanf.c.
4228 Define __vfscanf_internal or __vfwscanf_internal, depending on
4229 COMPILE_WSCANF; don't define any other public symbols.
4230 Remove errval and code to set errp.
4231 Temporarily check __ldbl_is_dbl and _IO_FLAGS2_SCANF_STD as well
4232 as the mode_flags argument.
4233 (encode_error, conv_error, input_error): Don't set errval.
4234 * stdio-common/vfwscanf-internal.c: Rename from vfwscanf.c.
4235 Include vfscanf-internal.c.
4236 * stdio-common/vfscanf.c: New file defining the public entry
4237 point vfscanf, which calls __vfscanf_internal.
4238 * stdio-common/vfwscanf.c: New file defining the public entry
4239 point vfwscanf, which calls __vfwscanf_internal.
4240
4241 * stdio-common/iovfscanf.c: New file.
4242 * stdio-common/iovfwscanf.c: Likewise.
4243
4244 * stdio-common/Makefile (routines): Add vfscanf-internal,
4245 vfwscanf-internal, iovfscanf, iovfwscanf.
4246 * stdio-common/Versions: Mention GLIBC_2.29, so that
4247 it can be used in SHLIB_COMPAT expressions.
4248 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl__IO_vfscanf):
4249 Wrap definition and compat_symbol line in #if SHLIB_COMPAT.
4250 Call __vfscanf_internal, instead of _IO_vfscanf.
4251 (__nldbl___vfscanf): Call __vfscanf_internal, instead of
4252 _IO_vfscanf.
4253 (__nldbl_vfwscanf): Call __vfwscanf_internal, instead of
4254 _IO_vfwscanf.
4255
4256 * libio/iovsscanf.c: Clean up includes, when possible. Use
4257 _IO_strfile_read or _IO_strfile_readw, when needed. Call
4258 __vfscanf_internal or __vfwscanf_internal directly.
4259 * libio/iovswscanf.c: Likewise.
4260 * libio/swscanf.c: Likewise.
4261 * libio/vscanf.c: Likewise.
4262 * libio/vwscanf.c: Likewise.
4263 * libio/wscanf.c: Likewise.
4264 * stdio-common/isoc99_fscanf.c: Likewise.
4265 * stdio-common/isoc99_scanf.c: Likewise.
4266 * stdio-common/isoc99_sscanf.c: Likewise.
4267 * stdio-common/isoc99_vfscanf.c: Likewise.
4268 * stdio-common/isoc99_vscanf.c: Likewise.
4269 * stdio-common/isoc99_vsscanf.c: Likewise.
4270 * stdio-common/scanf.c: Likewise.
4271 * stdio-common/sscanf.c: Likewise.
4272 * wcsmbs/isoc99_fwscanf.c: Likewise.
4273 * wcsmbs/isoc99_swscanf.c: Likewise.
4274 * wcsmbs/isoc99_vfwscanf.c: Likewise.
4275 * wcsmbs/isoc99_vswscanf.c: Likewise.
4276 * wcsmbs/isoc99_vwscanf.c: Likewise.
4277 * wcsmbs/isoc99_wscanf.c: Likewise.
4278
4279 2018-12-05 Albert ARIBAUD <albert.aribaud@3adev.fr>
4280
4281 * include/time.h
4282 (__tz_compute): Replace time_t with __time64_t.
4283 (__tz_convert): Replace time_t* with __time64_t.
4284 (__offtime): Replace time_t* with __time64_t.
4285 * time/gmtime.c
4286 (__gmtime_r): Adjust call to __tz_convert.
4287 (gmtime): Likewise.
4288 * time/localtime.c
4289 (__localtime_r): Likewise.
4290 (localtime): Likewise.
4291 * time/offtime.c: Replace time_t with __time64_t.
4292 * time/tzset.c: Likewise.
4293
4294 2018-12-04 Joseph Myers <joseph@codesourcery.com>
4295
4296 * Makefile ($(objpfx)testroot.pristine/install.stamp): Do not run
4297 dynamic linker unless [$(run-built-tests) = yes].
4298
4299 2018-12-03 DJ Delorie <dj@delorie.com>
4300
4301 * support/test-container.c (check_for_unshare_hints): New.
4302 (main): Call it if unshare fails. Add support for "su" scriptlet
4303 command.
4304
4305 2018-12-03 Joseph Myers <joseph@codesourcery.com>
4306
4307 * scripts/gen-as-const.py (compute_c_consts): Take an argument
4308 'START' to indicate that start text should be output.
4309 (gen_test): Likewise.
4310 (main): Generate 'START' for first symbol or '--' line, or at end
4311 of input if not previously generated.
4312
4313 2018-12-03 Rafael Ávila de Espíndola <rafael@espindo.la>
4314
4315 [BZ #19767]
4316 * sysdeps/unix/sysv/linux/arm/init-first.c: Remove #ifdef SHARED.
4317 * sysdeps/unix/sysv/linux/arm/libc-vdso.h: Remove #ifdef SHARED.
4318 * sysdeps/unix/sysv/linux/arm/sysdep.h: Define
4319 ALWAYS_USE_VSYSCALL.
4320
4321 2018-12-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4322
4323 [BZ #23913]
4324 * sysdeps/posix/spawni.c (maybe_script_execute): Increment size of
4325 new_argv by one.
4326
4327 2018-12-03 Carlos O'Donell <carlos@redhat.com>
4328
4329 [BZ #23923]
4330 * locale/programs/localedef.c: Declare boolean hard_links default true.
4331 (options): Add --no-hard-links option.
4332 (parse_opt): Add OPT_NO_HARD_LINKS case and set hard_links to false.
4333 * locale/programs/localedef.h: Declare prototype for hard_links.
4334 * locale/programs/locfile.c (write_locale_data): Don't use hard
4335 links if hard_links is false.
4336
4337 2018-12-03 H.J. Lu <hongjiu.lu@intel.com>
4338
4339 * sysdeps/x86/cacheinfo.c (intel_check_word): Updated for
4340 cpu_features_basic.
4341 (__cache_sysconf): Likewise.
4342 (init_cacheinfo): Likewise.
4343 * sysdeps/x86/cpu-features.c (get_extended_indeces): Also
4344 populate COMMON_CPUID_INDEX_80000007 and
4345 COMMON_CPUID_INDEX_80000008.
4346 (get_common_indices): Also populate COMMON_CPUID_INDEX_D_ECX_1.
4347 Use CPU_FEATURES_CPU_P (cpu_features, XSAVEC) to check if
4348 XSAVEC is available. Set the bit_arch_XXX_Usable bits.
4349 (init_cpu_features): Use _Static_assert on
4350 index_arch_Fast_Unaligned_Load.
4351 __get_cpuid_registers and __get_arch_feature. Updated for
4352 cpu_features_basic. Set stepping in cpu_features.
4353 * sysdeps/x86/cpu-features.h: (FEATURE_INDEX_1): Changed to enum.
4354 (FEATURE_INDEX_2): New.
4355 (FEATURE_INDEX_MAX): Changed to enum.
4356 (COMMON_CPUID_INDEX_D_ECX_1): New.
4357 (COMMON_CPUID_INDEX_80000007): Likewise.
4358 (COMMON_CPUID_INDEX_80000008): Likewise.
4359 (cpuid_registers): Likewise.
4360 (cpu_features_basic): Likewise.
4361 (CPU_FEATURE_USABLE): Likewise.
4362 (bit_arch_XXX_Usable): Likewise.
4363 (cpu_features): Use cpuid_registers and cpu_features_basic.
4364 (bit_arch_XXX): Reweritten.
4365 (bit_cpu_XXX): Likewise.
4366 (index_cpu_XXX): Likewise.
4367 (reg_XXX): Likewise.
4368 * sysdeps/x86/tst-get-cpu-features.c: Include <stdio.h> and
4369 <support/check.h>.
4370 (CHECK_CPU_FEATURE): New.
4371 (CHECK_CPU_FEATURE_USABLE): Likewise.
4372 (cpu_kinds): Likewise.
4373 (do_test): Print vendor, family, model and stepping. Check
4374 HAS_CPU_FEATURE and CPU_FEATURE_USABLE.
4375 (TEST_FUNCTION): Removed.
4376 Include <support/test-driver.c> instead of
4377 "../../test-skeleton.c".
4378 * sysdeps/x86_64/multiarch/sched_cpucount.c (__sched_cpucount):
4379 Check POPCNT instead of POPCOUNT.
4380 * sysdeps/x86_64/multiarch/test-multiarch.c (do_test): Likewise.
4381
4382 2018-12-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
4383
4384 * scripts/gen-as-const.py (main): Avoid emitting empty line when
4385 there is no element in `consts'.
4386
4387 2018-12-01 Florian Weimer <fweimer@redhat.com>
4388
4389 * support/support_capture_subprocess.c
4390 (support_capture_subprocess): Check that pipe descriptors have
4391 expected values. Close original pipe descriptors in subprocess.
4392
4393 2018-12-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
4394
4395 [BZ #23032]
4396 * sysdeps/htl/pt-barrier-init.c (pthread_barrier_init): Fix comparing
4397 attr with __pthread_default_barrierattr.
4398 * sysdeps/htl/pt-cond-init.c (__pthread_cond_init): Fix comparing
4399 attr with __pthread_default_condattr.
4400 * sysdeps/htl/pt-mutex-init.c (_pthread_mutex_init): Fix comparing
4401 attr with __pthread_default_mutexattr.
4402 * sysdeps/htl/pt-rwlock-init.c (_pthread_rwlock_init): Fix comparing
4403 attr with __pthread_default_rwlockattr.
4404
4405 2018-12-01 Kemi Wang <kemi.wang@intel.com>
4406
4407 * manual/tunables.texi (POSIX Thread Tunables): New node.
4408 * nptl/Makefile (libpthread-routines): Add pthread_mutex_conf.
4409 * nptl/nptl-init.c: Include pthread_mutex_conf.h
4410 (__pthread_initialize_minimal_internal) [HAVE_TUNABLES]: Call
4411 __pthread_tunables_init.
4412 * nptl/pthreadP.h (MAX_ADAPTIVE_COUNT): Remove.
4413 (max_adaptive_count): Define.
4414 * nptl/pthread_mutex_conf.c: New file.
4415 * nptl/pthread_mutex_conf.h: New file.
4416 * sysdeps/generic/adaptive_spin_count.h: New file.
4417 * sysdeps/nptl/dl-tunables.list: New file.
4418 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Use
4419 max_adaptive_count () not MAX_ADAPTIVE_COUNT.
4420 * nptl/pthread_mutex_timedlock.c (__pthrad_mutex_timedlock):
4421 Likewise.
4422
4423 2018-12-01 Paul Pluzhnikov <ppluzhnikov@google.com>
4424
4425 [BZ #20544]
4426 * stdlib/cxa_atexit.c (__internal_atexit): assert func != NULL.
4427 * stdlib/on_exit.c (__on_exit): Likewise.
4428 * stdlib/Makefile (tests): Add tst-bz20544.
4429 * stdlib/tst-bz20544.c: New test.
4430
4431 2018-11-30 Rafael Ávila de Espíndola <rafael@espindo.la>
4432
4433 [BZ #19767]
4434 * sysdeps/unix/sysv/linux/i386/init-first.c: Don't check SHARED.
4435 * sysdeps/unix/sysv/linux/i386/sysdep.h (ALWAYS_USE_VSYSCALL):
4436 New.
4437
4438 2018-11-30 Florian Weimer <fweimer@redhat.com>
4439
4440 * scripts/abilist.awk: Print "0x0" for size 0. Handle "g"/"D".
4441 Extend error logging.
4442 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.2.6): Adjust _end
4443 symbol.
4444
4445 2018-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4446
4447 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Use
4448 __sigismember instead of sigismember.
4449 * sysdeps/posix/system.c [SIGCANCEL] (cancel_handler_args,
4450 cancel_handler): New definitions.
4451 (do_system): Use posix_spawn instead of fork and execl and remove
4452 reentracy code.
4453 * sysdeps/generic/not-errno.h (__kill_noerrno): New prototype.
4454 * sysdeps/unix/sysv/linux/not-errno.h (__kill_noerrno): Likewise.
4455 * sysdeps/unix/sysv/linux/ia64/system.c: Remove file.
4456 * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
4457 * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
4458 * sysdeps/unix/sysv/linux/system.c: Likewise.
4459
4460 [BZ #22834]
4461 [BZ #17490]
4462 * NEWS: Add new semantic for atfork with popen and system.
4463 * libio/iopopen.c (_IO_new_proc_open): use posix_spawn instead of
4464 fork and execl.
4465
4466 2018-11-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
4467
4468 [BZ #23690]
4469 * elf/dl-runtime.c (_dl_profile_fixup): Guarantee memory
4470 modification order when accessing reloc_result->addr.
4471 * include/link.h (reloc_result): Add field init.
4472 * nptl/Makefile (tests): Add tst-audit-threads.
4473 (modules-names): Add tst-audit-threads-mod1 and
4474 tst-audit-threads-mod2.
4475 Add rules to build tst-audit-threads.
4476 * nptl/tst-audit-threads-mod1.c: New file.
4477 * nptl/tst-audit-threads-mod2.c: Likewise.
4478 * nptl/tst-audit-threads.c: Likewise.
4479 * nptl/tst-audit-threads.h: Likewise.
4480
4481 2018-11-30 Joseph Myers <joseph@codesourcery.com>
4482
4483 * scripts/gen-as-const.py: New file.
4484 * scripts/gen-as-const.awk: Remove.
4485 * Makerules ($(common-objpfx)%.h $(common-objpfx)%.h.d): Use
4486 gen-as-const.py.
4487 ($(objpfx)test-as-const-%.c): Likewise.
4488
4489 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
4490
4491 * elf/dl-exception.c: Include <_itoa.h>.
4492
4493 2018-11-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
4494
4495 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value
4496 returned by __f_setlk.
4497
4498 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
4499 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4500
4501 * elf/Makefile (tests-internal): Add tst-create_format1.
4502 * elf/dl-exception.c (_dl_exception_create_format): Support
4503 %x, %lx and %zx.
4504 * elf/tst-create_format1.c: New file.
4505
4506 2018-11-29 Charles-Antoine Couret <charles-antoine.couret@essensium.com>
4507
4508 * argp/argp-fmtstream.c (__argp_fmtstream_update): Use [_LIBC]
4509 conditional on calls to _IO_fwide and putwc_unlocked. (Merge from
4510 gnulib.)
4511 * argp/argp-help.c (__argp_failure): Likewise.
4512
4513 2018-11-29 Mao Han <han_mao@c-sky.com>
4514
4515 * elf/elf.h (EM_CSKY, R_CKCORE_NONE, R_CKCORE_ADDR32)
4516 (R_CKCORE_PCRELIMM8BY4, R_CKCORE_PCRELIMM11BY2, R_CKCORE_PCREL32)
4517 (R_CKCORE_PCRELJSR_IMM11BY2, R_CKCORE_RELATIVE, R_CKCORE_COPY)
4518 (R_CKCORE_GLOB_DAT, R_CKCORE_JUMP_SLOT, R_CKCORE_GOTOFF)
4519 (R_CKCORE_GOTPC, R_CKCORE_GOT32, R_CKCORE_PLT32, R_CKCORE_ADDRGOT)
4520 (R_CKCORE_ADDRPLT, R_CKCORE_PCREL_IMM26BY2, R_CKCORE_PCREL_IMM16BY2)
4521 (R_CKCORE_PCREL_IMM16BY4, R_CKCORE_PCREL_IMM10BY2)
4522 (R_CKCORE_PCREL_IMM10BY4, R_CKCORE_ADDR_HI16, R_CKCORE_ADDR_LO16)
4523 (R_CKCORE_GOTPC_HI16, R_CKCORE_GOTPC_LO16, R_CKCORE_GOTOFF_HI16)
4524 (R_CKCORE_GOTOFF_LO16, R_CKCORE_GOT12, R_CKCORE_GOT_HI16)
4525 (R_CKCORE_GOT_LO16, R_CKCORE_PLT12, R_CKCORE_PLT_HI16)
4526 (R_CKCORE_PLT_LO16, R_CKCORE_ADDRGOT_HI16, R_CKCORE_ADDRGOT_LO16)
4527 (R_CKCORE_ADDRPLT_HI16, R_CKCORE_ADDRPLT_LO16)
4528 (R_CKCORE_PCREL_JSR_IMM26BY2, R_CKCORE_TOFFSET_LO16)
4529 (R_CKCORE_DOFFSET_LO16, R_CKCORE_PCREL_IMM18BY2)
4530 (R_CKCORE_DOFFSET_IMM18, R_CKCORE_DOFFSET_IMM18BY2)
4531 (R_CKCORE_DOFFSET_IMM18BY4, R_CKCORE_GOT_IMM18BY4)
4532 (R_CKCORE_PLT_IMM18BY4, R_CKCORE_PCREL_IMM7BY4, R_CKCORE_TLS_LE32)
4533 (R_CKCORE_TLS_IE32, R_CKCORE_TLS_GD32, R_CKCORE_TLS_LDM32)
4534 (R_CKCORE_TLS_LDO32, R_CKCORE_TLS_DTPMOD32, R_CKCORE_TLS_DTPOFF32)
4535 (R_CKCORE_TLS_TPOFF32): New defines.
4536
4537 2018-11-29 Florian Weimer <fweimer@redhat.com>
4538
4539 * posix/Makefile (before-compile): Remove testcases.h and
4540 ptestcases.h.
4541 (generated): Add testcases.h and ptestcases.h.
4542 (testcases.h, ptestcases.h): Move to $(objpfx).
4543 (runtests.o): Add dependency on testcases.h.
4544 (runptests.o): Add dependency on ptestcases.h.
4545 * posix/testcases.h, posix/ptestcases.h: Remove files.
4546 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps): Do
4547 not touch posix/testcases.h and posix/ptestcases.h.
4548
4549 2018-11-28 Florian Weimer <fweimer@redhat.com>
4550
4551 support: Add signal support to support_capture_subprocess_check.
4552 * support/capture_subprocess.h (support_capture_subprocess_check):
4553 Adjust comment and rename parameter.
4554 * support/support_capture_subprocess_check.c
4555 (print_actual_status): New function.
4556 (support_capture_subprocess_check): Support negative
4557 status_or_signal. Call print_actual_status.
4558 * support/tst-support_capture_subprocess.c (do_test): Call
4559 support_capture_subprocess_check.
4560 * libio/tst-vtables-common.c (termination_status)
4561 (init_termination_status): Remove.
4562 (check_for_termination): Adjust support_capture_subprocess_check
4563 call.
4564 (do_test): Remove call to init_termination_status.
4565
4566 2018-11-28 Joseph Myers <joseph@codesourcery.com>
4567
4568 * scripts/build-many-glibcs.py (Glibc.build_glibc): Use original
4569 source directory instead of a copy.
4570 (CommandList.create_copy_dir): Remove.
4571
4572 2018-11-28 Stefan Liebler <stli@linux.ibm.com>
4573
4574 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
4575
4576 2018-11-28 Florian Weimer <fweimer@redhat.com>
4577
4578 * support/support.h (support_quote_string): Do not use str
4579 parameter name.
4580
4581 2018-11-27 Joseph Myers <joseph@codesourcery.com>
4582
4583 * sysdeps/mach/hurd/Makefile ($(common-objpfx)stamp-errnos): Use
4584 $(hurd-objpfx)bits/errno.h-tmp, not $(hurd)/bits/errno.h-tmp.
4585
4586 2018-11-27 Florian Weimer <fweimer@redhat.com>
4587
4588 * support/support.h (support_quote_string): Declare.
4589 * support/support_quote_string.c: New file.
4590 * support/tst-support_quote_string.c: Likewise.
4591 * support/Makefile (libsupport-routines): Add
4592 support_quote_string.
4593 (tests): Add tst-support_quote_string.
4594
4595 2018-11-27 Florian Weimer <fweimer@redhat.com>
4596
4597 [BZ #23927]
4598 CVE-2018-19591
4599 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Avoid
4600 descriptor leak in case of ENODEV error.
4601
4602 2018-11-27 Rafael Ávila de Espíndola <rafael@espindo.la>
4603
4604 [BZ #19767]
4605 * sysdeps/unix/sysv/linux/aarch64/init-first.c: Remove #ifdef SHARED.
4606 * sysdeps/unix/sysv/linux/aarch64/libc-vdso.h: Remove #ifdef SHARED.
4607 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Define ALWAYS_USE_VSYSCALL.
4608
4609 2018-11-26 Carlos O'Donell <carlos@redhat.com>
4610
4611 * scripts/abilist.awk: Handle .tdata. Error for unknown combinations.
4612 Error for unknown lines.
4613
4614 2018-11-26 Joseph Myers <joseph@codesourcery.com>
4615
4616 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
4617 Touch additional files.
4618
4619 2018-11-26 Florian Weimer <fweimer@redhat.com>
4620
4621 [BZ #23907]
4622 * malloc/malloc.c (_int_free): Validate tc_idx before checking for
4623 double-frees.
4624
4625 2018-11-26 Rafael Ávila de Espíndola <rafael@espindo.la>
4626
4627 [BZ #19767]
4628 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Remove #ifdef SHARED.
4629 * sysdeps/unix/sysv/linux/powerpc/libc-vdso.h: Remove #ifdef
4630 SHARED. Include sysdep.h.
4631 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Define
4632 ALWAYS_USE_VSYSCALL.
4633 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Define
4634 ALWAYS_USE_VSYSCALL.
4635
4636 2018-11-23 Rafael Ávila de Espíndola <rafael@espindo.la>
4637
4638 [BZ #19767]
4639 * nptl/Makefile (tests-static): Add tst-cond11-static.
4640 (tests): Likewise.
4641 * nptl/tst-cond11-static.c: New File.
4642 * sysdeps/unix/sysv/linux/Makefile (tests-static): Add
4643 tst-affinity-static.
4644 (tests): Likewise.
4645 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Check USE_VSYSCALL
4646 instead of SHARED.
4647 * sysdeps/unix/sysv/linux/sysdep.h (ALWAYS_USE_VSYSCALL): New.
4648 (USE_VSYSCALL): Likewise.
4649 * sysdeps/unix/sysv/linux/tst-affinity-static.c: New file.
4650 * sysdeps/unix/sysv/linux/x86/libc-vdso.h: Check USE_VSYSCALL
4651 instead of SHARED.
4652 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Don't check
4653 SHARED.
4654 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (ALWAYS_USE_VSYSCALL):
4655 New.
4656
4657 2018-11-23 Joseph Myers <joseph@codesourcery.com>
4658
4659 [BZ #23915]
4660 * sysdeps/unix/sysv/linux/arm/kernel-features.h
4661 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_COPY_FILE_RANGE):
4662 Undefine.
4663
4664 2018-11-23 H.J. Lu <hongjiu.lu@intel.com>
4665
4666 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1a.
4667 (tst-cet-legacy-1a-ARGS): New.
4668 ($(objpfx)tst-cet-legacy-1a): New target.
4669 * sysdeps/x86/tst-cet-legacy-1a.c: New file.
4670
4671 2018-11-22 Joseph Myers <joseph@codesourcery.com>
4672
4673 * conform/conformtest.py (CompileSubTest.__init__): Set
4674 self.run_early to False.
4675 (ExecuteSubTest.__init__): Likewise.
4676 (HeaderTests.run): Try running all non-optional, non-XFAILed
4677 compilation tests in a single execution of the compiler.
4678
4679 * conform/conformtest.py (CompileSubTest): New class.
4680 (ExecuteSubTest): Likewise.
4681 (ElementTest.run): Rename to gen_subtests. Append tests to
4682 self.subtests instead of running them.
4683 (ConstantTest.run): Likewise.
4684 (SymbolTest.run): Likewise.
4685 (TypeTest.run): Likewise.
4686 (TagTest.run): Likewise.
4687 (FunctionTest.run): Likewise.
4688 (VariableTest.run): Likewise.
4689 (MacroFunctionTest.run): Likewise.
4690 (MacroStrTest.run): Likewise.
4691 (HeaderTests.handle_test_line): Generate subtests for tests.
4692 (HeaderTests.run): Run subtests for tests.
4693
4694 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4695
4696 * math/Versions (GLIBC_2.29): Add pow.
4697 * math/w_pow_compat.c (__pow_compat): Change to versioned compat
4698 symbol.
4699 * math/w_pow.c: New file.
4700 * sysdeps/i386/fpu/w_pow.c: New file.
4701 * sysdeps/ia64/fpu/e_pow.S: Add versioned symbols.
4702 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Rename to __pow
4703 and add necessary aliases.
4704 * sysdeps/ieee754/dbl-64/w_pow.c: New file.
4705 * sysdeps/m68k/m680x0/fpu/w_pow.c: New file.
4706 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4707 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4708 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4709 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4710 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4711 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4712 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4713 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4714 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4715 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4716 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4717 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4718 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4719 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4720 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4721 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4722 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4723 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4724 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4725 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4726 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4727 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4728 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4729 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4730 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__ieee754_pow): Rename to
4731 __pow.
4732 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__ieee754_pow): Likewise.
4733 * sysdeps/x86_64/fpu/multiarch/e_pow.c (__ieee754_pow): Likewise.
4734 * sysdeps/x86_64/fpu/multiarch/w_pow.c: New file.
4735
4736 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4737
4738 * math/Versions (GLIBC_2.29): Add log2.
4739 * math/w_log2_compat.c (__log2_compat): Change to versioned compat
4740 symbol.
4741 * math/w_log2.c: New file.
4742 * sysdeps/i386/fpu/w_log2.c: New file.
4743 * sysdeps/ia64/fpu/e_log2.S: Add versioned symbols.
4744 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Rename to __log2
4745 and add necessary aliases.
4746 * sysdeps/ieee754/dbl-64/w_log2.c: New file.
4747 * sysdeps/m68k/m680x0/fpu/w_log2.c: New file.
4748 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4749 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4750 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4751 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4752 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4753 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4754 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4755 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4756 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4757 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4758 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4759 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4760 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4761 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4762 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4763 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4764 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4765 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4766 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4767 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4768 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4769 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4770 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4771 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4772
4773 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4774
4775 * math/Versions (GLIBC_2.29): Add log.
4776 * math/w_log_compat.c (__log_compat): Change to versioned compat
4777 symbol.
4778 * math/w_log.c: New file.
4779 * sysdeps/i386/fpu/w_log.c: New file.
4780 * sysdeps/ia64/fpu/e_log.S: Update.
4781 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Rename to __log
4782 and add necessary aliases.
4783 * sysdeps/ieee754/dbl-64/w_log.c: New file.
4784 * sysdeps/m68k/m680x0/fpu/w_log.c: New file.
4785 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4786 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4787 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4788 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4789 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4790 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4791 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4792 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4793 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4794 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4795 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4796 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4797 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4798 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4799 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4800 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4801 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4802 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4803 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4804 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4805 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4806 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4807 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4808 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4809 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c (__ieee754_log): Rename to
4810 __log.
4811 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c (__ieee754_log): Likewise.
4812 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c (__ieee754_log): Likewise.
4813 * sysdeps/x86_64/fpu/multiarch/e_log.c (__ieee754_log): Likewise.
4814 * sysdeps/x86_64/fpu/multiarch/w_log.c: New file.
4815
4816 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4817
4818 * math/Versions (GLIBC_2.29): Add exp and exp2.
4819 * math/w_exp2_compat.c (__exp2_compat): Change to versioned compat
4820 symbol, handle NO_LONG_DOUBLE and LONG_DOUBLE_COMPAT explicitly.
4821 * math/w_exp_compat.c (__exp_compat): Likewise.
4822 * math/w_exp.c: New file.
4823 * math/w_exp2.c: New file.
4824 * sysdeps/i386/fpu/w_exp.c: New file.
4825 * sysdeps/i386/fpu/w_exp2.c: New file.
4826 * sysdeps/ia64/fpu/e_exp.S: Add versioned symbols.
4827 * sysdeps/ia64/fpu/e_exp2.S: Likewise.
4828 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Rename to __exp
4829 and add necessary aliases.
4830 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Rename to __exp2
4831 and add necessary aliases.
4832 * sysdeps/ieee754/dbl-64/w_exp.c: New file.
4833 * sysdeps/ieee754/dbl-64/w_exp2.c: New file.
4834 * sysdeps/m68k/m680x0/fpu/w_exp.c: New file.
4835 * sysdeps/m68k/m680x0/fpu/w_exp2.c: New file.
4836 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4837 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4838 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4839 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4840 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4841 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4842 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4843 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4844 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4845 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4846 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4847 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4848 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4849 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4850 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4851 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4852 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4853 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4854 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4855 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4856 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4857 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4858 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4859 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4860 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__exp1): Remove.
4861 (__ieee754_exp): Rename to __exp.
4862 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__exp1): Remove.
4863 (__ieee754_exp): Rename to __exp.
4864 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__exp1): Remove.
4865 (__ieee754_exp): Rename to __exp.
4866 * sysdeps/x86_64/fpu/multiarch/e_exp.c (__ieee754_exp): Rename to
4867 __exp.
4868 * sysdeps/x86_64/fpu/multiarch/w_exp.c: New file.
4869
4870 2018-11-20 DJ Delorie <dj@redhat.com>
4871
4872 * malloc/malloc.c (tcache_entry): Add key field.
4873 (tcache_put): Set it.
4874 (tcache_get): Likewise.
4875 (_int_free): Check for double free in tcache.
4876 * malloc/tst-tcfree1.c: New.
4877 * malloc/tst-tcfree2.c: New.
4878 * malloc/Makefile: Run the new tests.
4879 * manual/probes.texi: Document memory_tcache_double_free probe.
4880
4881 * dlfcn/dlerror.c (check_free): Prevent double frees.
4882
4883 2018-11-20 Wilco Dijkstra <wdijkstr@arm.com>
4884
4885 * sysdeps/aarch64/memset.S (MEMSET): Improve non-zero memset loop.
4886
4887 2018-11-20 Joseph Myers <joseph@codesourcery.com>
4888
4889 * conform/conformtest.py (ElementTest.run): Use unique identifiers
4890 in tests. Use names for format arguments.
4891 (ConstantTest.run): Likewise.
4892 (SymbolTest.run): Likewise.
4893 (TypeTest.run): Likewise.
4894 (TagTest.run): Likewise.
4895 (FunctionTest.run): Likewise.
4896 (VariableTest.run): Likewise.
4897 (MacroFunctionTest.run): Likewise.
4898 (MacroStrTest.run): Likewise.
4899 (HeaderTests.__init__): Set self.num_tests.
4900 (HeaderTests.handle_test_line): Set test.num. Increment
4901 self.num_tests.
4902
4903 2018-11-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
4904
4905 * sysdeps/mach/hurd/f_setlk.c: Include <unistd.h>.
4906 (__f_setlk): When whence is SEEK_CUR, use __lseek64 to convert it to
4907 SEEK_SET.
4908
4909 2018-11-19 Mao Han <han_mao@c-sky.com>
4910
4911 * scripts/config.guess: Update to version 2018-08-29.
4912 * scripts/config.sub: Update to version 2018-08-29.
4913
4914 2018-11-19 Florian Weimer <fweimer@redhat.com>
4915
4916 support: Print timestamps in timeout handler.
4917 * support/support_test_main.c (print_timestamp): New function.
4918 (signal_handler): Use it to print the termination time and the
4919 time of the last write to standard output.
4920
4921 2018-11-16 Zack Weinberg <zackw@panix.com>
4922 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4923
4924 * include/monetary.h (STRFMON_LDBL_IS_DBL): New constant.
4925 (__vstrfmon_l): Rename to __vstrfmon_l_internal and add flags
4926 argument.
4927 * stdlib/strfmon_l.c (__vstrfmon_l): Rename to __vstrfmon_l_internal
4928 and add flags argument. Check flags instead of __ldbl_is_dbl when
4929 deciding whether to set is_long_double.
4930 (__strfmon_l): Call __vstrfmon_l_internal instead of __vstrfmon_l,
4931 passing zero for flags argument.
4932 * stdlib/strfmon.c (strfmon): Same change as made to __strfmon_l.
4933
4934 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
4935 (__nldbl___vstrfmon, __nldbl___vstrfmon_l)
4936 (__nldbl_strfmon, __nldbl___strfmon_l): Call __vstrfmon_l_internal
4937 directly, passing STRFMON_LDBL_IS_DBL for flags argument. Normalize
4938 variable names. Remove libc_hidden_def/libc_hidden_proto from
4939 __nldbl___vstrfmon and __nldbl___vstrfmon_l, because they are no
4940 longer called from within the library.
4941 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h: Don't use NLDBL_DECL
4942 for __nldbl___vstrfmon_l, declare it explicitly.
4943
4944 * manual/locale.texi: Update a reference to vstrfmon_l in comments.
4945
4946 2018-11-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
4947
4948 * sysdeps/mach/hurd/bits/fcntl.h (F_GETLK64, F_SETLK64, F_SETLKW64): New
4949 macros
4950 [__USE_FILE_OFFSET64] (F_GETLK, F_SETLK, F_SETLKW): Define to F_GETLK64,
4951 F_SETLK64, F_SETLKW64, respectively.
4952 * sysdeps/mach/hurd/f_setlk.c: New file.
4953 * sysdeps/mach/hurd/f_setlk.h: New file.
4954 * sysdeps/mach/hurd/Makefile [$(subdir) = io] (sysdeps_routines): Add
4955 f_setlk.
4956 * sysdeps/mach/hurd/fcntl.c: Include "f_setlk.h".h".
4957 (__libc_fcntl): Move non-flock operations to...
4958 * sysdeps/mach/hurd/vfcntl.c (__libc_vfcntl): ... New file.
4959 * sysdeps/mach/hurd/fcntl.c (fcntl64): Add missing alias.
4960
4961 2018-11-15 Paul Eggert <eggert@cs.ucla.edu>
4962
4963 mktime: DEBUG_MKTIME cleanup
4964 The DEBUG_MKTIME code no longer works in glibc or in Gnulib.
4965 And it’s no longer needed now that glibc and Gnulib both have
4966 their own testing mechanisms for mktime.
4967 * time/mktime.c (DEBUG_MKTIME): Remove. All uses removed.
4968
4969 mktime: fix non-EOVERFLOW errno handling
4970 [BZ#23789]
4971 mktime was not properly reporting failures when the underlying
4972 localtime_r fails with errno != EOVERFLOW; it incorrectly treated
4973 them like EOVERFLOW failures, and set errno to EOVERFLOW.
4974 The problem could happen on non-glibc platforms, with Gnulib.
4975 * time/mktime.c (guess_time_tm): Remove, replacing with ...
4976 (tm_diff): ... this simpler function, which does not change errno.
4977 All callers changed to deal with errno themselves.
4978 (ranged_convert, __mktime_internal): Return failure immediately if
4979 the underlying function reports any failure other than EOVERFLOW.
4980 (__mktime_internal): Set errno to EOVERFLOW if the spring-forward
4981 gap code fails.
4982
4983 mktime: fix bug with Y2038 DST transition
4984 [BZ#23789]
4985 * time/mktime.c (ranged_convert): On 32-bit platforms, don’t
4986 mishandle a DST transition that jumps over the Y2038 boundary.
4987 No such DST transitions are known so this is only a theoretical
4988 bug, but we might as well do things right.
4989
4990 mktime: make more room for overflow
4991 [BZ#23789]
4992 * time/mktime.c (long_int): Now 4⨯ int, not just 3⨯.
4993 This is so that we can add tm_diff results to a previous guess,
4994 which will be useful in a later patch.
4995
4996 mktime: simplify offset guess
4997 [BZ#23789]
4998 * time/mktime.c (__mktime_internal): Omit excess precision.
4999
5000 mktime: new test for mktime failure
5001 [BZ#23789]
5002 Based on a test suggested by Albert Aribaud in:
5003 https://www.sourceware.org/ml/libc-alpha/2018-10/msg00662.html
5004 * time/Makefile (tests): Add bug-mktime4.
5005 * time/bug-mktime4.c: New file.
5006
5007 mktime: fix EOVERFLOW bug
5008 [BZ#23789]
5009 * time/mktime.c [!_LIBC && !DEBUG_MKTIME]:
5010 Include libc-config.h, not config.h, for __set_errno.
5011 (guess_time_tm, __mktime_internal): Set errno to EOVERFLOW on overflow.
5012
5013 2018-11-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
5014
5015 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): Use
5016 __attribute_copy__ to copy attributes from name. Drop static qualifier
5017 to avoid warnings about leaf attribute not having effect on static
5018 functions.
5019
5020 2018-11-13 Florian Weimer <fweimer@redhat.com>
5021
5022 * malloc/malloc.c (fastbin_push_entry): New function.
5023 (fastbin_pop_entry): Likewise. Replaces REMOVE_FB.
5024 (REMOVE_FB): Remove macro.
5025 (_int_malloc): Use fastbin_pop_entry and reindent.
5026 (_int_free): Use fastbin_push_entry.
5027 (malloc_consolidate): Use atomic_exchange_acquire.
5028
5029 2018-11-13 Joseph Myers <joseph@codesourcery.com>
5030
5031 * sysdeps/mips/__longjmp.c (__longjmp): Define alias manually with
5032 alias attribute, not with strong_alias.
5033
5034 * include/libc-symbols.h [SHARED && !NO_HIDDEN && !__ASSEMBLER__]
5035 (__hidden_ver2): New macro. Use old definition of __hidden_ver1
5036 with additional parameter thread.
5037 [SHARED && !NO_HIDDEN && !__ASSEMBLER__] (__hidden_ver1): Define
5038 in terms of __hidden_ver2.
5039 (hidden_tls_def): New macro.
5040 (libc_hidden_tls_def): Likewise.
5041 (rtld_hidden_tls_def): Likewise.
5042 (libm_hidden_tls_def): Likewise.
5043 (libmvec_hidden_tls_def): Likewise.
5044 (libresolv_hidden_tls_def): Likewise.
5045 (librt_hidden_tls_def): Likewise.
5046 (libdl_hidden_tls_def): Likewise.
5047 (libnss_files_hidden_tls_def): Likewise.
5048 (libnsl_hidden_tls_def): Likewise.
5049 (libnss_nisplus_hidden_tls_def): Likewise.
5050 (libutil_hidden_tls_def): Likewise.
5051 (libutil_hidden_tls_def): Likweise.
5052 * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions_thread): Use
5053 libc_hidden_tls_def.
5054 (__sim_disabled_exceptions_thread): Likewise.
5055 (__sim_round_mode_thread): Likewise.
5056
5057 * sysdeps/sparc/sparc-ifunc.h [SHARED]
5058 (sparc_ifunc_redirected_hidden_def): Use __attribute_copy__ to
5059 copy attributes from name.
5060
5061 2018-11-12 Joseph Myers <joseph@codesourcery.com>
5062
5063 * sysdeps/arm/arm-ifunc.h [SHARED] (arm_libc_ifunc_hidden_def):
5064 Use __attribute_copy__ to copy attributes from name.
5065
5066 * sysdeps/i386/i686/fpu/multiarch/e_expf.c [SHARED]: Use __THROW
5067 with __hidden_ver1 call.
5068 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c [SHARED]: Likewise.
5069 * sysdeps/i386/i686/fpu/multiarch/e_logf.c [SHARED]: Likewise.
5070 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include <math.h>.
5071 (__cosf): Do not declare here.
5072 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include <math.h>.
5073 (__sincosf): Do not declare here.
5074 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include <math.h>.
5075 (__sinf): Do not declare here.
5076
5077 * sysdeps/ia64/fpu/sfp-machine.h (__LITTLE_ENDIAN): Remove.
5078 (__BIG_ENDIAN): Likewise.
5079 (__BYTE_ORDER): Likewise.
5080 (strong_alias): Likewise.
5081 (_strong_alias): Likewise.
5082
5083 2018-11-12 Florian Weimer <fweimer@redhat.com>
5084
5085 * malloc/malloc.c (unlink_chunk): Turn the unlink macro into this
5086 function. Move after the definition of in_smallbin_range. Do not
5087 use __builtin_expect for paths that lead to a noreturn function.
5088 Drop remaining __builtin_expect (p->fd_nextsize != NULL, 0)
5089 because it is unclear whether this is in fact an unlikely
5090 condition.
5091 (_int_malloc, _int_free): Adjust.
5092 (malloc_consolidate, _int_realloc): Adjust. Remove bck, fwd
5093 variables.
5094 * malloc/arena.c (heap_trim): Likewise.
5095
5096 2018-11-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
5097
5098 * sysdeps/mach/hurd/spawni.c (__spawni): Add ccwdir port. Test and use
5099 it, free it if needed.
5100 (reauthenticate): Test and use ccwdir.
5101 (child_init_port): In non-resetids case, test and use ccwdir.
5102 (child_chdir): New nested function to set ccwdir.
5103 * hurd/hurd/userlink.h (_hurd_userlink_move): New function.
5104 * hurd/hurd/port.h (_hurd_port_move): New function.
5105 * sysdeps/mach/hurd/spawni.c (NEW_ULINK_TABLE): New macro.
5106 (EXPAND_DTABLE): Use NEW_ULINK_TABLE macro for ulink_dtable.
5107 * hurd/Versions (_hurd_port_move): Export function.
5108 * sysdeps/mach/hurd/i386/libc.abilist (_hurd_port_move): Expect
5109 symbol.
5110 * sysdeps/mach/hurd/spawni.c (__spawni): Use orig_dtablesize instead
5111 of dtablesize for allocating dtable_cloexec.
5112
5113 2018-11-09 Martin Sebor <msebor@redhat.com>
5114
5115 * include/libc-symbols.h (__attribute_copy__): Define macro unless
5116 it's already defined.
5117 (_strong_alias): Use __attribute_copy__.
5118 (_weak_alias, __hidden_ver1, __hidden_nolink2): Same.
5119 * misc/sys/cdefs.h (__attribute_copy__): New macro.
5120 * sysdeps/x86_64/multiarch/memchr.c (memchr): Use __attribute_copy__.
5121 * sysdeps/x86_64/multiarch/memcmp.c (memcmp): Same.
5122 * sysdeps/x86_64/multiarch/mempcpy.c (mempcpy): Same.
5123 * sysdeps/x86_64/multiarch/memset.c (memset): Same.
5124 * sysdeps/x86_64/multiarch/stpcpy.c (stpcpy): Same.
5125 * sysdeps/x86_64/multiarch/strcat.c (strcat): Same.
5126 * sysdeps/x86_64/multiarch/strchr.c (strchr): Same.
5127 * sysdeps/x86_64/multiarch/strcmp.c (strcmp): Same.
5128 * sysdeps/x86_64/multiarch/strcpy.c (strcpy): Same.
5129 * sysdeps/x86_64/multiarch/strcspn.c (strcspn): Same.
5130 * sysdeps/x86_64/multiarch/strlen.c (strlen): Same.
5131 * sysdeps/x86_64/multiarch/strncmp.c (strncmp): Same.
5132 * sysdeps/x86_64/multiarch/strncpy.c (strncpy): Same.
5133 * sysdeps/x86_64/multiarch/strnlen.c (strnlen): Same.
5134 * sysdeps/x86_64/multiarch/strpbrk.c (strpbrk): Same.
5135 * sysdeps/x86_64/multiarch/strrchr.c (strrchr): Same.
5136 * sysdeps/x86_64/multiarch/strspn.c (strspn): Same.
5137
5138 2018-11-09 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5139
5140 * misc/tst-efgcvt.c: Include support/check.h and
5141 support/test-driver.c. Do not include test-skeleton.c.
5142 (error_count): Remove.
5143 (output_error): Replace increments to error_count with calls to
5144 support_record_failure.
5145 (output_r_error): Likewise.
5146 (special): Likewise.
5147 (do_test): Unconditionally return zero.
5148 (TEST_FUNCTION): Remove.
5149
5150 2018-11-09 Joseph Myers <joseph@codesourcery.com>
5151
5152 * conform/Makefile ($(conformtest-header-tests)): Create $(@D),
5153 not $(@D)/scratch.
5154 ($(linknamespace-header-tests)): Likewise.
5155
5156 * conform/conformtest.py: New file.
5157 * conform/conformtest.pl: Remove.
5158 * conform/GlibcConform.pm: Likewise.
5159 * conform/glibcconform.py (KEYWORDS_C90): New constant.
5160 (KEYWORDS_C99): Likewise.
5161 (KEYWORDS): Likewise.
5162 * conform/Makefile ($(conformtest-header-tests)): Use
5163 conformtest.py instead of conformtest.pl. Do not pass --tmpdir
5164 option. Use --header instead of --headers.
5165 * conform/data/arpa/inet.h-data: Remove trailing semicolons on
5166 function entries.
5167 * conform/data/spawn.h-data: Likewise.
5168 * conform/data/fcntl.h-data (openat): Add space after function
5169 name.
5170 * conform/data/wchar.h-data (wcscasecmp): Likewise.
5171 (wcscasecmp_l): Likewise.
5172 * conform/data/termios.h-data (c_cc): Add space after element
5173 name.
5174
5175 2018-11-08 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5176
5177 * argp/tst-ldbl-argp.c (do_one_test): Use TEST_COMPARE_STRING,
5178 instead of manually comparing and reporting mismatching strings.
5179 * misc/tst-ldbl-error.c (do_one_test): Likewise.
5180 * misc/tst-ldbl-warn.c (do_one_test): Likewise.
5181
5182 2018-11-08 Joseph Myers <joseph@codesourcery.com>
5183
5184 * sysdeps/unix/sysv/linux/kernel-features.h: Remove comment about
5185 __ASSUME_SOCKETCALL.
5186 * sysdeps/unix/sysv/linux/i386/kernel-features.h
5187 (__ASSUME_SOCKETCALL): Remove.
5188 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
5189 (__ASSUME_SOCKETCALL): Likewise.
5190 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
5191 (__ASSUME_SOCKETCALL): Likewise.
5192 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
5193 (__ASSUME_SOCKETCALL): Likewise.
5194 * sysdeps/unix/sysv/linux/s390/kernel-features.h
5195 (__ASSUME_SOCKETCALL): Likewise.
5196 * sysdeps/unix/sysv/linux/sh/kernel-features.h
5197 (__ASSUME_SOCKETCALL): Likewise.
5198 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
5199 (__ASSUME_SOCKETCALL): Likewise.
5200
5201 2018-11-08 H.J. Lu <hongjiu.lu@intel.com>
5202
5203 [BZ #23509]
5204 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Skip
5205 note parsing if a NT_GNU_PROPERTY_TYPE_0 note has been processed.
5206 Update the l_cet field when processing NT_GNU_PROPERTY_TYPE_0 note.
5207 Check multiple NT_GNU_PROPERTY_TYPE_0 notes.
5208 * sysdeps/x86/link_map.h (l_cet): Expand to 3 bits, Add
5209 lc_unknown.
5210
5211 2018-11-08 Alexandra Hájková <ahajkova@redhat.com>
5212
5213 [BZ #17630]
5214 * resolv/tst-resolv-network.c: Add test for getnetbyname.
5215
5216 2018-11-07 Joseph Myers <joseph@codesourcery.com>
5217
5218 [BZ #23867]
5219 * sysdeps/unix/sysv/linux/arm/kernel-features.h
5220 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
5221 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
5222 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
5223
5224 2018-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5225
5226 * support/support_test_compare_string.c
5227 (support_test_compare_string): Fix printf format.
5228
5229 2018-11-07 Florian Weimer <fweimer@redhat.com>
5230
5231 Implement TEST_COMPARE_STRING.
5232 * support/check.h (TEST_COMPARE_STRING): Define.
5233 (support_test_compare_string): Declare.
5234 * support/Makefile (libsupport-routines): Add
5235 support_test_compare_string.
5236 (tests): Add tst-test_compare_string.
5237 * support/support_test_compare_string.c: New file.
5238 * support/tst-test_compare_string.c: Likewise.
5239
5240 2018-11-07 Andreas Schwab <schwab@suse.de>
5241
5242 [BZ #23864]
5243 * sysdeps/unix/sysv/linux/riscv/kernel-features.h
5244 (__ASSUME_SET_ROBUST_LIST) [__LINUX_KERNEL_VERSION < 0x041400]:
5245 Undef.
5246
5247 2018-11-06 Joseph Myers <joseph@codesourcery.com>
5248
5249 [BZ #23862]
5250 * sysdeps/unix/sysv/linux/sh/kernel-features.h
5251 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_EXECVEAT): Undefine.
5252 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_MLOCK2): Likewise.
5253 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_COPY_FILE_RANGE):
5254 Likewise.
5255
5256 2018-11-06 Florian Weimer <fweimer@redhat.com>
5257
5258 [BZ #17405]
5259 * posix/Makefile (routines): Add spawn_faction_addchdir.
5260 (tests): Add tst-spawn-chdir.
5261 * posix/Versions (GLIBC_2.29): Add
5262 posix_spawn_file_actions_addchdir_np.
5263 * posix/spawn_faction_addchdir.c: New file.
5264 * posix/spawn_faction_destroy.c
5265 (__posix_spawn_file_actions_destroy): Handle spawn_do_chdir.
5266 * posix/spawn.h (posix_spawn_file_actions_addchdir_np): Declare.
5267 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_chdir,
5268 chdir_action.
5269 * posix/tst-spawn-chdir.c: New file.
5270 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_chdir.
5271 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
5272 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
5273 posix_spawn_file_actions_addchdir_np.
5274 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
5275 Likewise.
5276 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
5277 Likewise.
5278 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
5279 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
5280 Likewise.
5281 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
5282 Likewise.
5283 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
5284 Likewise.
5285 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
5286 Likewise.
5287 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
5288 Likewise.
5289 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
5290 Likewise.
5291 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
5292 (GLIBC_2.29): Likewise.
5293 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
5294 (GLIBC_2.29): Likewise.
5295 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
5296 (GLIBC_2.29): Likewise.
5297 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
5298 (GLIBC_2.29): Likewise.
5299 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
5300 Likewise.
5301 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
5302 (GLIBC_2.29): Likewise.
5303 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
5304 (GLIBC_2.29): Likewise.
5305 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
5306 (GLIBC_2.29): Likewise.
5307 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
5308 (GLIBC_2.29): Likewise.
5309 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
5310 Likewise.
5311 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
5312 Likewise.
5313 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
5314 Likewise.
5315 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
5316 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
5317 Likewise.
5318 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
5319 Likewise.
5320 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
5321 Likewise.
5322 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
5323 Likewise.
5324
5325 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5326
5327 * misc/Makefile (tests): Add tst-ldbl-error.
5328 * misc/tst-ldbl-error.c: New file.
5329
5330 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5331
5332 * misc/Makefile (tests): Add tst-ldbl-warn.
5333 * misc/tst-ldbl-warn.c: New file.
5334
5335 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5336
5337 * argp/Makefile (tests): Add tst-ldbl-argp.
5338 * argp/tst-ldbl-argp.c: New file.
5339
5340 2018-11-05 Arjun Shankar <arjun@redhat.com>
5341
5342 * iconv/gconv_conf.c (__gconv_read_conf): Remove NULL check for
5343 __gconv_path_elem and call __gconv_get_path unconditionally.
5344
5345 2018-11-05 Andreas Schwab <schwab@suse.de>
5346
5347 [BZ #22927]
5348 * resolv/gai_misc.c (__gai_enqueue_request): Don't crash if
5349 creating the first helper thread failed.
5350
5351 2018-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
5352
5353 * sysdeps/mach/hurd/msync.c: New file.
5354
5355 2018-11-02 Florian Weimer <fweimer@redhat.com>
5356
5357 * support/shell-container.c (copy_func): Call
5358 support_copy_file_range instead of copy_file_range to support
5359 cross-device copies.
5360
5361 2018-11-02 Florian Weimer <fweimer@redhat.com>
5362
5363 * support/test-container.c: Include <libc-pointer-arith.h> for
5364 ALIGN_UP.
5365
5366 2018-11-01 Zong Li <zong@andestech.com>
5367
5368 * soft-fp/op-8.h (_FP_FRAC_SET_8, _FP_FRAC_ADD_8, _FP_FRAC_SUB_8)
5369 (_FP_FRAC_CLZ_8, _FP_MINFRAC_8, _FP_FRAC_NEGP_8, _FP_FRAC_ZEROP_8)
5370 (_FP_FRAC_HIGHBIT_DW_8, _FP_FRAC_COPY_4_8, _FP_FRAC_COPY_8_4)
5371 (__FP_FRAC_SET_8): Add implementation for RV32 use.
5372
5373 * soft-fp/op-4.h (_FP_FRAC_SUB_3, _FP_FRAC_SUB_4): Use temporary
5374 variable to avoid overlap arguments.
5375
5376 2018-11-01 Joseph Myers <joseph@codesourcery.com>
5377
5378 * posix/bug-regex22.c (main): Use puts with distinct error
5379 messages for unexpected success of re_compile_pattern, not printf
5380 with NULL argument to %s.
5381
5382 * stdio-common/bug22.c: Include <libc-diag.h>.
5383 (do_test): Disable -Wformat-overflow= warnings around fprintf
5384 calls outputting more than INT_MAX characters.
5385 * stdio-common/tst-printf.c: Disable -Wformat-overflow= warnings
5386 around printf call with NULL %s argument.
5387
5388 [BZ #23848]
5389 * sysdeps/unix/sysv/linux/sparc/kernel-features.h [!__arch64__ &&
5390 __LINUX_KERNEL_VERSION < 0x040400] (__ASSUME_SENDMSG_SYSCALL):
5391 Undefine.
5392 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5393 (__ASSUME_RECVMSG_SYSCALL): Likewise.
5394 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5395 (__ASSUME_SENDTO_SYSCALL): Likewise.
5396 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5397 (__ASSUME_ACCEPT_SYSCALL): Undefine under this condition, not just
5398 [!__arch64__].
5399 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5400 (__ASSUME_CONNECT_SYSCALL): Likewise.
5401 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5402 (__ASSUME_RECVFROM_SYSCALL): Likewise.
5403 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_BIND_SYSCALL):
5404 Define.
5405 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_LISTEN_SYSCALL):
5406 Likewise.
5407 [__LINUX_KERNEL_VERSION >= 0x040400]
5408 (__ASSUME_SETSOCKOPT_SYSCALL): Likewise.
5409 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (bind):
5410 Remove.
5411 (listen): Likewise.
5412 (setsockopt): Likewise.
5413
5414 2018-11-01 Fredrik Noring <noring@nocrew.org>
5415
5416 * sysdeps/mips/sys/tas.h (_test_and_set): Handle the R5900 CPU
5417 with the ISA override.
5418
5419 2018-10-31 Rafael Avila de Espindola <rafael@espindo.la>
5420
5421 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Simplify an #if #else
5422 #endif.
5423
5424 2018-10-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
5425
5426 * manual/errno.texi (EIEIO): Document how translators should
5427 translate the error message.
5428 * sysdeps/mach/hurd/errnos.awk: Avoid printing errnos.d. Avoid
5429 printing trailing whitespaces refused by git.
5430 * sysdeps/gnu/errlist.c (EIEIO): Regenerate.
5431 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
5432 * hurd/Makefile (user-interfaces): Add pci.
5433
5434 2018-10-30 Joseph Myers <joseph@codesourcery.com>
5435
5436 * conform/linknamespace.py: New file.
5437 * conform/linknamespace.pl: Remove file.
5438 * conform/Makefile ($(linknamespace-header-tests)): Use
5439 linknamespace.py instead of linknamespace.pl. Do not use --tmpdir
5440 option.
5441
5442 2018-10-30 Florian Weimer <fweimer@redhat.com>
5443
5444 * stdlib/test-bz22786.c (do_test): Additional free calls to avoid
5445 memory leaks.
5446
5447 2018-10-30 Florian Weimer <fweimer@redhat.com>
5448
5449 * support/blob_repeat.c (allocate_big): Call mkstemp directly.
5450
5451 2018-10-30 Florian Weimer <fweimer@redhat.com>
5452
5453 * stdlib/tst-strtod-overflow.c (do_test): Switch to
5454 support_blob_repeat.
5455
5456 2018-10-30 Florian Weimer <fweimer@redhat.com>
5457
5458 Avoid spurious test failures in stdlib/test-bz22786.
5459 * support/Makefile (libsupport-routines): Add blob_repeat.
5460 (tests): Add tst-support_blob_repeat.
5461 * support/blob_repeat.h: New file.
5462 * support/blob_repeat.c: Likewise.
5463 * support/tst-support_blob_repeat.c: Likewise.
5464 * stdlib/test-bz22786.c (do_test): Replace malloc and memset with
5465 support_blob_repeat_allocate.
5466
5467 2018-10-30 Andreas Schwab <schwab@suse.de>
5468
5469 [BZ #23125]
5470 * sysdeps/riscv/start.S (ENTRY_POINT): Mark ra as undefined.
5471 Don't use tail call.
5472 * elf/tst-unwind-main.c: New file.
5473 * elf/Makefile (tests): Add tst-unwind-main.
5474 (CFLAGS-tst-unwind-main.c): Define.
5475
5476 2018-10-29 Sergi Almacellas Abellana <sergi@koolpi.com>
5477
5478 [BZ #23791]
5479 * localedata/locales/ca_ES (LC_MONETARY): set p_cs_precedes and
5480 n_cs_precedes to 0.
5481 * localedata/locales/ca_ES (LC_MONETARY): set grouping to 3;3
5482
5483 2018-10-29 Joseph Myers <joseph@codesourcery.com>
5484
5485 * conform/glibcconform.py: Do not import shutil.
5486 (list_exported_functions): Use tempfile.TemporaryDirectory instead
5487 of mkdtemp.
5488
5489 * configure.ac (PYTHON_PROG): Use AC_CHECK_PROG_VER. Set
5490 critic_missing for versions before 3.4.
5491 * configure: Regenerated.
5492 * manual/install.texi (Tools for Compilation): Document
5493 requirement for Python to build glibc.
5494 * INSTALL: Regenerated.
5495 * Rules [PYTHON]: Make code unconditional.
5496 * benchtests/Makefile [PYTHON]: Likewise.
5497 * conform/Makefile [PYTHON]: Likewise.
5498 * manual/Makefile [PYTHON]: Likewise.
5499 * math/Makefile [PYTHON]: Likewise.
5500
5501 2018-10-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
5502
5503 * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000.
5504 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): When the server does not
5505 answer to interrupt_operation, return EIEIO instead of EINTR.
5506 * sysdeps/mach/hurd/i386/intr-msg.h (INTR_MSG_TRAP): Make
5507 _hurd_intr_rpc_msg_about_to global point to start of controlled
5508 assembly snippet. Make it check canceled flag.
5509 * hurd/hurdsig.c (_hurdsig_abort_rpcs): Only mutate thread if it passed
5510 the _hurd_intr_rpc_msg_about_to point.
5511 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Remove comment on mutation
5512 issue, remove cancel flag check.
5513
5514 2018-10-26 Joseph Myers <joseph@codesourcery.com>
5515
5516 * scripts/build-many-glibcs.py: Remove compatibility for missing
5517 os.cpu_count and re.fullmatch.
5518
5519 2018-10-26 Szabolcs Nagy <szabolcs.nagy@arm.com>
5520
5521 [BZ #23822]
5522 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Use WEAK_LIBM_ENTRY.
5523 * sysdeps/ia64/fpu/e_log2f.S (log2f): Likewise.
5524 * sysdeps/ia64/fpu/e_exp2f.S (powf): Likewise.
5525
5526 2018-10-25 Joseph Myers <joseph@codesourcery.com>
5527
5528 * sysdeps/unix/sysv/linux/sys/inotify.h (IN_MASK_CREATE): New
5529 macro.
5530
5531 2018-10-25 Florian Weimer <fweimer@redhat.com>
5532
5533 [BZ #23562]
5534 [BZ #23821]
5535 XFAIL siginfo_t si_band conform test on sparc64.
5536 * sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
5537 (__SI_BAND_TYPE): Only override long int default type on sparc64.
5538 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
5539 (conformtest-xfail-conds): Add sparc64-linux.
5540 * conform/data/signal.h-data (siginfo_t): XFAIL si_band test on
5541 sparc64.
5542 * conform/data/sys/wait.h-data (siginfo_t): Likewise.
5543
5544 2018-10-25 Joseph Myers <joseph@codesourcery.com>
5545
5546 * elf/elf.h (NT_MIPS_DSP): New macro.
5547 (NT_MIPS_FP_MODE): Likewise.
5548
5549 2018-10-25 Zong Li <zong@andestech.com>
5550
5551 * elf/Makefile (LDFLAGS-tst-execstack-mod.so): Change variable
5552 name by adding the file extension (.so).
5553
5554 2018-10-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
5555
5556 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
5557 (test-xfail-ISO11/threads.h/linknamespace,
5558 test-xfail-ISO11/threads.h/conform): Add.
5559
5560 2018-10-24 Joseph Myers <joseph@codesourcery.com>
5561
5562 * math/gen-libm-test.py: Import os.
5563 (ALL_FLOATS_MANUAL): New constant.
5564 (ALL_FLOATS_SUFFIX): Likewise.
5565 (Ulps.all_functions): New function.
5566 (real_all_ulps): Likewise.
5567 (generate_err_table_sub): Likewise.
5568 (generate_err_table): Likewise.
5569 (main): Handle -s and -m options.
5570 * manual/libm-err-tab.pl: Remove.
5571 * manual/Makefile ($(objpfx)stamp-libm-err): Use gen-libm-test.py
5572 instead of libm-err-tab.pl.
5573 [$(PERL) != no]: Change condition to [$(if $(PYTHON),$(PERL),no)
5574 != no].
5575 * manual/install.texi (Tools for Compilation): Document
5576 requirement for Python to build manual.
5577 * INSTALL: Regenerated.
5578
5579 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
5580
5581 * bits/time64.h: New file.
5582 * include/time.h: Replace internal_time_t with __time64_t.
5583 * posix/bits/types (__time64_t): Add.
5584 * stdlib/Makefile: Add bits/time64.h to includes.
5585 * time/tzfile.c: Replace internal_time_t with __time64_t.
5586
5587 2018-10-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5588
5589 * include/spawn.h (__posix_spawn, posix_spawn_file_actions_addclose,
5590 __posix_spawn_file_actions_adddup2, __posix_spawn_file_actions_destroy,
5591 __posix_spawn_file_actions_init, __posix_spawnattr_init,
5592 __posix_spawnattr_destroy, __posix_spawnattr_setflags,
5593 __posix_spawnattr_setsigdefault, __posix_spawnattr_setsigmask): New
5594 prototype.
5595 * posix/spawn.c (__posix_spawn): Add libc_hidden_def.
5596 * posix/spawn_faction_addclose.c
5597 (__posix_spawn_file_actions_addclose): Add hidden definition.
5598 * posix/spawn_faction_adddup2.c
5599 (__posix_spawn_file_actions_adddup2): Likewise.
5600 * posix/spawn_faction_destroy.c
5601 (__posix_spawn_file_actions_destroy): Likewise.
5602 * posix/spawn_faction_init.c (__posix_spawn_file_actions_init):
5603 Likewise.
5604 * posix/spawnattr_destroy.c (__posix_spawnattr_destroy): Likewise.
5605 * posix/spawnattr_init.c (__posix_spawnattr_init): Likewise.
5606 * posix/spawnattr_setdefault.c (__posix_spawnattr_setsigdefault):
5607 Likewise.
5608 * posix/spawnattr_setflags.c (__posix_spawnattr_setflags): Likewise.
5609 * posix/spawnattr_setsigmask.c (__posix_spawnattr_setsigmask):
5610 Likewise.
5611
5612 2018-10-24 Andreas Schwab <schwab@suse.de>
5613
5614 [BZ #18093]
5615 * elf/dl-cache.c (_dl_load_cache_lookup): Check for truncated old
5616 format cache.
5617 * elf/cache.c (print_cache): Likewise.
5618
5619 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
5620
5621 * bits/timesize.h: New file.
5622 * stdlib/Makefile (headers): Add bits/timesize.h.
5623 * sysdeps/unix/sysv/linux/bits/msq-pad.h
5624 (__MSQ_PAD_AFTER_TIME): Use __TIMESIZE instead of __WORDSIZE.
5625 * sysdeps/unix/sysv/linux/bits/sem-pad.h
5626 (__SEM_PAD_AFTER_TIME): Likewise.
5627 * sysdeps/unix/sysv/linux/bits/shm-pad.h
5628 (__SHM_PAD_AFTER_TIME): Likewise.
5629 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h
5630 (__MSQ_PAD_BEFORE_TIME): Likewise.
5631 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h
5632 (__SEM_PAD_BEFORE_TIME): Likewise.
5633 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h
5634 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
5635 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h
5636 (__MSQ_PAD_AFTER_TIME, __MSQ_PAD_BEFORE_TIME): Likewise.
5637 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h
5638 (__MSQ_PAD_BEFORE_TIME): Likewise.
5639 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h
5640 (__SEM_PAD_BEFORE_TIME): Likewise.
5641 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h
5642 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
5643 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h
5644 (__MSQ_PAD_BEFORE_TIME): Likewise.
5645 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h
5646 (__SEM_PAD_BEFORE_TIME): Likewise.
5647 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h
5648 (__SHM_PAD_BEFORE_TIME): Likewise.
5649 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Delete file.
5650 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
5651 * sysdeps/unix/sysv/linux/x86/bits/timesize.h: New file.
5652
5653 2018-10-24 H.J. Lu <hongjiu.lu@intel.com>
5654
5655 * benchtests/Makefile (CPPFLAGS-nonlib): Add -DUSE_RDTSCP if
5656 USE_RDTSCP is defined.
5657 * sysdeps/x86/hp-timing.h (HP_TIMING_NOW): Use RDTSCP if
5658 USE_RDTSCP is defined.
5659
5660 2018-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5661
5662 * misc/tst-preadvwritev2-common.c (IOV_MAX): Define if not
5663 defined.
5664
5665 [BZ #23709]
5666 * sysdeps/x86/cpu-features.c (init_cpu_features): Set TSX bits
5667 independently of other flags.
5668
5669 2018-10-23 Florian Weimer <fweimer@redhat.com>
5670
5671 * time/tst-mktime2.c (N_STRINGS): Remove.
5672 (set_timezone): New function.
5673 (spring_forward_gap): Call it. Use FAIL_EXIT1.
5674 (mktime_test1): Report localtime failure and check errno value.
5675 Use TEST_COMPARE.
5676 (irix_6_4_bug, bigtime_test): Use TEST_COMPARE.
5677 (do_test): Remove alarm call. Use set_timezone and array_length.
5678
5679 2018-10-23 Andreas Schwab <schwab@suse.de>
5680
5681 * sysdeps/unix/sysv/linux/riscv/setcontext.S (__setcontext)
5682 (__start_context): Use END instead of PSEUDO_END.
5683
5684 2018-10-22 Joseph Myers <joseph@codesourcery.com>
5685
5686 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
5687 version to 4.19.
5688
5689 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
5690 version to 4.19.
5691
5692 [BZ #23793]
5693 * wcsmbs/c32rtomb.c: New file.
5694 * wcsmbs/mbrtoc32.c: Likewise.
5695 * wcsmbs/tst-c32-state.c: Likewise.
5696 * wcsmbs/mbrtowc.c (mbrtoc32): Do not define as alias.
5697 * wcsmbs/wcrtomb.c (c32rtomb): Likewise.
5698 * wcsmbs/Makefile (routines): Add mbrtoc32 and c32rtomb.
5699 (tests): Add tst-c32-state.
5700 [$(run-built-tests) = yes] ($(objpfx)tst-c32-state.out): Depend on
5701 $(gen-locales).
5702
5703 2018-10-21 H.J. Lu <hongjiu.lu@intel.com>
5704
5705 * sysdeps/x86/hp-timing.h: Don't include <x86intrin.h>.
5706 (HP_TIMING_NOW): Replace _rdtsc with __builtin_ia32_rdtsc.
5707
5708 2018-10-19 Joseph Myers <joseph@codesourcery.com>
5709
5710 [BZ #23794]
5711 * wcsmbs/c16rtomb.c (c16rtomb): Save first character of surrogate
5712 pair and return 0 in that case, and use saved character to
5713 interpret following character.
5714 * wcsmbs/tst-c16-surrogate.c: New file.
5715 * wcsmbs/Makefile (tests): Add tst-c16-surrogate.c.
5716 [$(run-built-tests) = yes] ($(objpfx)tst-c16-surrogate.out):
5717 Depend on $(gen-locales)
5718
5719 2018-10-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
5720
5721 [BZ #23562]
5722 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
5723 (struct siginfo_t): Use correct type for si_band.
5724
5725 2018-10-19 Florian Weimer <fweimer@redhat.com>
5726
5727 [BZ #23689]
5728 * resource/bits/types/struct_rusage.h (struct rusage): Update
5729 comment on struct. Remove extraneous field comment.
5730
5731 2018-10-18 David S. Miller <davem@davemloft.net>
5732
5733 * sysdeps/unix/sysv/linux/sparc/init-first.c: New file.
5734 * sysdeps/unix/sysv/linux/sparc/libc-vdso.h: New file.
5735 * sysdeps/unix/sysv/linux/sparc/Makefile: Add dl-vdso to
5736 sysdep_routines in subdir elf.
5737 * sysdeps/unix/sysv/linux/sparc/Versions: Add GLIBC_PRIVATE
5738 version for __vdso_clock_gettime.
5739 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_VSYSCALL_CALL):
5740 Define.
5741 (HAVE_CLOCK_GETTIME_VSYSCALL): Define.
5742 (HAVE_GETTIMEOFDAY_VSYSCALL): Define.
5743
5744 * sysdeps/sparc/fpu/libm-test-ulps: Regenerated.
5745
5746 2018-10-17 H.J. Lu <hongjiu.lu@intel.com>
5747
5748 * sysdeps/i386/init-arch.h: Removed.
5749 * sysdeps/i386/i586/init-arch.h: Likewise.
5750 * sysdeps/i386/i686/init-arch.h: Likewise.
5751 * sysdeps/i386/i686/hp-timing.h: Likewise.
5752 * sysdeps/x86_64/hp-timing.h: Likewise.
5753 * sysdeps/i386/isa.h: New file.
5754 * sysdeps/i386/i586/isa.h: Likewise.
5755 * sysdeps/i386/i686/isa.h: Likewise.
5756 * sysdeps/x86_64/isa.h: Likewise.
5757 * sysdeps/x86/hp-timing.h: New file.
5758 * sysdeps/x86/init-arch.h: Include <isa.h>.
5759
5760 2018-10-17 Joseph Myers <joseph@codesourcery.com>
5761
5762 * math/libm-test-pow.inc (pow_test_data): Do not allow
5763 divide-by-zero exception for pow(+/- 0, -Inf).
5764
5765 2018-10-17 Zack Weinberg <zackw@panix.com>
5766
5767 * manual/job.texi (Job Control is Optional): Remove node, as
5768 job control has not been optional in quite some time.
5769 (Job Control): Mention briefly that systems older than
5770 POSIX.1-2001 might not support job control.
5771 * manual/conf.texi (_POSIX_JOB_CONTROL): Will always be
5772 defined on systems conforming to POSIX.1-2001.
5773
5774 2018-10-17 Arjun Shankar <arjun@redhat.com>
5775
5776 [BZ #22062]
5777 * iconv/gconv_conf.c (__gconv_get_path): Remove locking and fix
5778 indentation.
5779 * (__gconv_read_conf): Mark function static.
5780 * (once): New static variable.
5781 * (__gconv_load_conf): New function.
5782 * iconv/gconv_int.h (__gconv_load_conf): Likewise.
5783 * iconv/gconv_db.c (once): Remove static variable.
5784 * (__gconv_compare_alias): Use __gconv_load_conf instead of
5785 __gconv_read_conf.
5786 * (__gconv_find_transform): Likewise.
5787 * iconv/tst-iconv-mt.c: New test.
5788 * iconv/Makefile: Add tst-iconv_mt.
5789
5790 2018-10-17 Joseph Myers <joseph@codesourcery.com>
5791
5792 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5793 bits/shm-pad.h.
5794 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shm-pad.h>.
5795 (shmatt_t): Define as __syscall_ulong_t.
5796 (__SHM_PAD_TIME): New macro, depending on [__SHM_PAD_BEFORE_TIME]
5797 and [__SHM_PAD_AFTER_TIME].
5798 (struct shmid_ds): Define time fields using __SHM_PAD_TIME.
5799 Define shm_segsz and associated padding based on
5800 [__SHM_SEGSZ_AFTER_TIME] and [__SHM_PAD_BETWEEN_TIME_AND_SEGSZ].
5801 Use __syscall_ulong_t instead of unsigned long int.
5802 [__USE_MISC] (struct shminfo): Use __syscall_ulong_t instead of
5803 unsigned long int.
5804 [__USE_MISC] (struct shm_info): Likewise.
5805 * sysdeps/unix/sysv/linux/bits/shm-pad.h: New file.
5806 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h: Likewise.
5807 * sysdeps/unix/sysv/linux/mips/bits/shm-pad.h: Likewise.
5808 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h: Likewise.
5809 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h: Likewise.
5810 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
5811 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Remove.
5812 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
5813 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
5814 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
5815 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
5816
5817 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5818 bits/shmlba.h.
5819 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shmlba.h>.
5820 (SHMLBA): Remove macro.
5821 (__getpagesize): Remove function declaration.
5822 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Include
5823 <bits/shmlba.h>.
5824 (SHMLBA): Remove macro.
5825 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Include
5826 <bits/shmlba.h>.
5827 (SHMLBA): Remove macro.
5828 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Include
5829 <bits/shmlba.h>.
5830 (SHMLBA): Remove macro.
5831 (__getpagesize): Remove function declaration.
5832 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Include
5833 <bits/shmlba.h>.
5834 (SHMLBA): Remove macro.
5835 (__getshmlba): Remove function declaration.
5836 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Include <bits/shmlba.h>.
5837 (SHMLBA): Remove macro.
5838 (__getpagesize): Remove function declaration.
5839 * sysdeps/unix/sysv/linux/arm/bits/shm.h: Remove file.
5840 * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
5841 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
5842 * sysdeps/unix/sysv/linux/bits/shmlba.h: New file.
5843 * sysdeps/unix/sysv/linux/arm/bits/shmlba.h: Likewise.
5844 * sysdeps/unix/sysv/linux/hppa/bits/shmlba.h: Likewise.
5845 * sysdeps/unix/sysv/linux/ia64/bits/shmlba.h: Likewise.
5846 * sysdeps/unix/sysv/linux/mips/bits/shmlba.h: Likewise.
5847 * sysdeps/unix/sysv/linux/sh/bits/shmlba.h: Likewise.
5848 * sysdeps/unix/sysv/linux/sparc/bits/shmlba.h: Likewise.
5849
5850 2018-10-17 Stefan Liebler <stli@linux.ibm.com>
5851
5852 [BZ #23275]
5853 * nptl/tst-mutex10.c: New File.
5854 * nptl/Makefile (tests): Add tst-mutex10.
5855 (tst-mutex10-ENV): New variable.
5856 * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
5857 Ensure that elision path is used if elision is available.
5858 * sysdeps/unix/sysv/linux/powerpc/force-elision.h (FORCE_ELISION):
5859 Likewise.
5860 * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
5861 Likewise.
5862 * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE, PTHREAD_MUTEX_TYPE_ELISION)
5863 (PTHREAD_MUTEX_PSHARED): Use atomic_load_relaxed.
5864 * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent): Likewise.
5865 * nptl/pthread_mutex_getprioceiling.c (pthread_mutex_getprioceiling):
5866 Likewise.
5867 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full)
5868 (__pthread_mutex_cond_lock_adjust): Likewise.
5869 * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
5870 Likewise.
5871 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Likewise.
5872 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
5873 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
5874 * sysdeps/nptl/bits/thread-shared-types.h (struct __pthread_mutex_s):
5875 Add comments.
5876 * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
5877 Use atomic_load_relaxed and atomic_store_relaxed.
5878 * nptl/pthread_mutex_init.c (__pthread_mutex_init):
5879 Use atomic_store_relaxed.
5880
5881 2018-10-17 Andreas Schwab <schwab@suse.de>
5882
5883 * benchtests/bench-strtod.c (TIMEOUT): Don't define.
5884 * crypt/badsalttest.c (TIMEOUT): Likewise.
5885 * crypt/sha256c-test.c (TIMEOUT): Likewise.
5886 * dirent/tst-fdopendir.c (TIMEOUT): Likewise.
5887 * io/test-lfs.c (TIMEOUT): Likewise.
5888 * libio/tst-atime.c (TIMEOUT): Likewise.
5889 * localedata/tst-leaks.c (TIMEOUT): Likewise.
5890 * nptl/tst-cancel19.c (TIMEOUT): Likewise.
5891 * nptl/tst-cancel22.c (TIMEOUT): Likewise.
5892 * nptl/tst-cancel25.c (TIMEOUT): Likewise.
5893 * nptl/tst-cancel7.c (TIMEOUT): Likewise.
5894 * nptl/tst-cond-except.c (TIMEOUT): Likewise.
5895 * nptl/tst-cond11.c (TIMEOUT): Likewise.
5896 * nptl/tst-cond14.c (TIMEOUT): Likewise.
5897 * nptl/tst-cond15.c (TIMEOUT): Likewise.
5898 * nptl/tst-cond24.c (TIMEOUT): Likewise.
5899 * nptl/tst-cond25.c (TIMEOUT): Likewise.
5900 * nptl/tst-kill2.c (TIMEOUT): Likewise.
5901 * nptl/tst-kill3.c (TIMEOUT): Likewise.
5902 * nptl/tst-mutex4.c (TIMEOUT): Likewise.
5903 * nptl/tst-mutex5.c (TIMEOUT): Likewise.
5904 * nptl/tst-mutex9.c (TIMEOUT): Likewise.
5905 * nptl/tst-once2.c (TIMEOUT): Likewise.
5906 * nptl/tst-once3.c (TIMEOUT): Likewise.
5907 * nptl/tst-once4.c (TIMEOUT): Likewise.
5908 * nptl/tst-robust8.c (TIMEOUT): Likewise.
5909 * nptl/tst-robust9.c (TIMEOUT): Likewise.
5910 * nptl/tst-rwlock16.c (TIMEOUT): Likewise.
5911 * nptl/tst-sem14.c (TIMEOUT): Likewise.
5912 * nptl/tst-sem6.c (TIMEOUT): Likewise.
5913 * nptl/tst-signal3.c (TIMEOUT): Likewise.
5914 * nptl/tst-spin4.c (TIMEOUT): Likewise.
5915 * nptl/tst-tls3.c (TIMEOUT): Likewise.
5916 * nptl/tst-tls4.c (TIMEOUT): Likewise.
5917 * posix/tst-chmod.c (TIMEOUT): Likewise.
5918 * posix/tst-getaddrinfo4.c (TIMEOUT): Likewise.
5919 * posix/tst-getaddrinfo5.c (TIMEOUT): Likewise.
5920 * posix/tst-preadwrite-common.c (TIMEOUT): Likewise.
5921 * posix/tst-regex2.c (TIMEOUT): Likewise.
5922 * posix/tst-waitid.c (TIMEOUT): Likewise.
5923 * rt/tst-aio.c (TIMEOUT): Likewise.
5924 * rt/tst-aio10.c (TIMEOUT): Likewise.
5925 * rt/tst-aio4.c (TIMEOUT): Likewise.
5926 * rt/tst-aio5.c (TIMEOUT): Likewise.
5927 * rt/tst-aio6.c (TIMEOUT): Likewise.
5928 * rt/tst-aio64.c (TIMEOUT): Likewise.
5929 * rt/tst-aio7.c (TIMEOUT): Likewise.
5930 * rt/tst-aio9.c (TIMEOUT): Likewise.
5931 * rt/tst-clock.c (TIMEOUT): Likewise.
5932 * rt/tst-cpuclock1.c (TIMEOUT): Likewise.
5933 * rt/tst-cpuclock2.c (TIMEOUT): Likewise.
5934 * rt/tst-mqueue2.c (TIMEOUT): Likewise.
5935 * rt/tst-mqueue4.c (TIMEOUT): Likewise.
5936 * rt/tst-mqueue5.c (TIMEOUT): Likewise.
5937 * rt/tst-timer4.c (TIMEOUT): Likewise.
5938 * stdio-common/tst-fseek.c (TIMEOUT): Likewise.
5939 * stdio-common/tst-rndseek.c (TIMEOUT): Likewise.
5940 * stdlib/tst-empty-env.c (TIMEOUT): Likewise.
5941 * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Likewise.
5942 * time/tst-ftime.c (TIMEOUT): Likewise.
5943 * timezone/tst-tzset.c (TIMEOUT): Likewise.
5944
5945 2018-10-16 Anton Youdkevitch <anton.youdkevitch@bell-sw.com>
5946
5947 * sysdeps/aarch64/multiarch/memcpy_thunderx.S: Remove thunderx2 code.
5948 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New implementation
5949 for thunderX2.
5950
5951 2018-10-15 Joseph Myers <joseph@codesourcery.com>
5952
5953 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5954 bits/sem-pad.h.
5955 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/sem-pad.h>
5956 instead of <bits/wordsize.h>.
5957 (__SEM_PAD_TIME): New macro, depending on [__SEM_PAD_BEFORE_TIME]
5958 and [__SEM_PAD_AFTER_TIME].
5959 (struct semid_ds): Define time fields using __SEM_PAD_TIME. Use
5960 __syscall_ulong_t instead of unsigned long int.
5961 * sysdeps/unix/sysv/linux/bits/sem-pad.h: New file.
5962 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h: Likewise.
5963 * sysdeps/unix/sysv/linux/mips/bits/sem-pad.h: Likewise.
5964 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h: Likewise.
5965 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h: Likewise.
5966 * sysdeps/unix/sysv/linux/x86/bits/sem-pad.h: Likewise.
5967 * sysdeps/unix/sysv/linux/hppa/bits/sem.h: Remove.
5968 * sysdeps/unix/sysv/linux/mips/bits/sem.h: Likewise.
5969 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
5970 * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
5971 * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
5972
5973 2018-10-14 Paul Eggert <eggert@cs.ucla.edu>
5974
5975 regex: simplify by using intprops.h
5976 [BZ#23744]
5977 * posix/regex_internal.h [_LIBC]: Include intprops.h.
5978 (TYPE_SIGNED, INT_ADD_WRAPV) [_LIBC]: Remove.
5979 intprops.h defines them.
5980
5981 regex: __builtin_expect → __glibc_unlikely
5982 [BZ#23744]
5983 This refactoring was prompted by a problem when the regex code is
5984 used as part of Gnulib and when the builder’s compiler does not grok
5985 __builtin_expect. Problem reported for Gawk by Nelson H.F. Beebe in:
5986 https://lists.gnu.org/r/bug-gnulib/2018-09/msg00137.html
5987 Although this refactoring does not fix the problem directly,
5988 we might as well have Gawk use the now-preferred glibc style for when
5989 __builtin_expect is unavailable.
5990 * posix/regex_internal.h (BE): Remove.
5991 All uses replaced by __glibc_unlikely or __glibc_likely.
5992
5993 2018-10-11 Joseph Myers <joseph@codesourcery.com>
5994
5995 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5996 bits/msq-pad.h.
5997 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/msq-pad.h>
5998 instead of <bits/wordsize.h>.
5999 (msgqnum_t): Define as __syscall_ulong_t.
6000 (msglen_t): Likewise.
6001 (__MSQ_PAD_TIME): New macro, depending on [__MSQ_PAD_BEFORE_TIME]
6002 and [__MSQ_PAD_AFTER_TIME].
6003 (struct msqid_ds): Define time fields using __MSQ_PAD_TIME. Use
6004 __syscall_ulong_t instead of unsigned long int.
6005 * sysdeps/unix/sysv/linux/bits/msq-pad.h: New file.
6006 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h: Likewise.
6007 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h: Likewise.
6008 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h: Likewise.
6009 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h: Likewise.
6010 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Likewise.
6011 * sysdeps/unix/sysv/linux/hppa/bits/msq.h: Remove.
6012 * sysdeps/unix/sysv/linux/mips/bits/msq.h: Likewise.
6013 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
6014 * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
6015 * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
6016
6017 2018-10-10 Joseph Myers <joseph@codesourcery.com>
6018
6019 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/wordsize.h>.
6020 (struct shmid_ds): Condition padding after time fields on
6021 [__WORDSIZE == 32].
6022 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Remove file.
6023 * sysdeps/unix/sysv/linux/generic/bits/shm.h: Likewise.
6024 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
6025
6026 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/wordsize.h>.
6027 (struct semid_ds): Condition padding after time fields on
6028 [__WORDSIZE == 32].
6029 * sysdeps/unix/sysv/linux/alpha/bits/sem.h: Remove file.
6030 * sysdeps/unix/sysv/linux/generic/bits/sem.h: Likewise.
6031 * sysdeps/unix/sysv/linux/ia64/bits/sem.h: Likewise.
6032 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
6033
6034 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/wordsize.h>.
6035 (struct msqid_ds): Condition padding after time fields on
6036 [__WORDSIZE == 32].
6037 * sysdeps/unix/sysv/linux/alpha/bits/msq.h: Remove file.
6038 * sysdeps/unix/sysv/linux/generic/bits/msq.h: Likewise.
6039 * sysdeps/unix/sysv/linux/ia64/bits/msq.h: Likewise.
6040 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
6041
6042 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
6043
6044 * nss/tst-nss-files-hosts-multi.c (TIMEOUT): Define.
6045
6046 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
6047
6048 * libio/tst-readline.c (TIMEOUT): Define.
6049
6050 2018-10-08 Paul Eggert <eggert@cs.ucla.edu>
6051
6052 mktime fix for Gnulib + coreutils
6053 [BZ#23745]
6054 This fix affects only Gnulib. Problem discovered when
6055 mktime.c was used as part of Gnulib in bleeding-edge Coreutils.
6056 * time/mktime.c:
6057 (my_tzset) [!_LIBC && !NEED_MKTIME_WORKING && !NEED_MKTIME_WINDOWS]:
6058 Do not define since it is not used. Defining an unused static
6059 function prompts a warning from GCC when Coreutils is configured
6060 with --enable-gcc-warnings.
6061
6062 2018-10-08 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
6063
6064 * benchtests/scripts/compare_bench.py (main): set float type on
6065 threshold argument.
6066
6067 2018-10-08 Rafal Luzynski <digitalfreak@lingonborough.com>
6068
6069 [BZ #23740]
6070 * localedata/locales/kl_GL (mon): Update, the relative case.
6071 (alt_mon): Add, fill with month names in the nominative case.
6072 (d_t_fmt): Set to "%a %b %d %Y %T %Z".
6073 (d_fmt): Set to "%b %d %Y".
6074
6075 2018-10-04 Joseph Myers <joseph@codesourcery.com>
6076
6077 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
6078 <bits/mman-linux.h>.
6079 (PROT_READ): Don't define here.
6080 (PROT_WRITE): Likewise.
6081 (PROT_EXEC): Likewise.
6082 (PROT_NONE): Likewise.
6083 (PROT_GROWSDOWN): Likewise.
6084 (PROT_GROWSUP): Likewise.
6085 (MAP_SHARED): Likewise.
6086 (MAP_PRIVATE): Likewise.
6087 [__USE_MISC] (MAP_SHARED_VALIDATE): Likewise.
6088 [__USE_MISC] (MAP_FILE): Likewise.
6089 [__USE_MISC] (MAP_ANONYMOUS): Likewise.
6090 [__USE_MISC] (MAP_ANON): Likewise.
6091 [__USE_MISC] (MAP_HUGE_SHIFT): Likewise.
6092 [__USE_MISC] (MAP_HUGE_MASK): Likewise.
6093 (MCL_CURRENT): Likewise.
6094 (MCL_FUTURE): Likewise.
6095 (MCL_ONFAULT): Likewise.
6096 [__USE_MISC] (MADV_NORMAL): Likewise.
6097 [__USE_MISC] (MADV_RANDOM): Likewise.
6098 [__USE_MISC] (MADV_SEQUENTIAL): Likewise.
6099 [__USE_MISC] (MADV_WILLNEED): Likewise.
6100 [__USE_MISC] (MADV_DONTNEED): Likewise.
6101 [__USE_MISC] (MADV_FREE): Likewise.
6102 [__USE_MISC] (MADV_REMOVE): Likewise.
6103 [__USE_MISC] (MADV_DONTFORK): Likewise.
6104 [__USE_MISC] (MADV_DOFORK): Likewise.
6105 [__USE_MISC] (MADV_HWPOISON): Likewise.
6106 [__USE_XOPEN2K] (POSIX_MADV_NORMAL): Likewise.
6107 [__USE_XOPEN2K] (POSIX_MADV_RANDOM): Likewise.
6108 [__USE_XOPEN2K] (POSIX_MADV_SEQUENTIAL): Likewise.
6109 [__USE_XOPEN2K] (POSIX_MADV_WILLNEED): Likewise.
6110 [__USE_XOPEN2K] (POSIX_MADV_DONTNEED): Likewise.
6111 (__MAP_ANONYMOUS): New macro.
6112 [__USE_MISC] (MAP_TYPE): Undefine and redefine after
6113 <bits/mman-linux.h> inclusion.
6114 (MAP_FIXED): Likewise.
6115 (MS_SYNC): Likewise.
6116 (MS_ASYNC): Likewise.
6117 (MS_INVALIDATE): Likewise.
6118 [__USE_MISC] (MADV_MERGEABLE): Likewise.
6119 [__USE_MISC] (MADV_UNMERGEABLE): Likewise.
6120 [__USE_MISC] (MADV_HUGEPAGE): Likewise.
6121 [__USE_MISC] (MADV_NOHUGEPAGE): Likewise.
6122 [__USE_MISC] (MADV_DONTDUMP): Likewise.
6123 [__USE_MISC] (MADV_DODUMP): Likewise.
6124 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
6125 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
6126
6127 [BZ #23735]
6128 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NO_MATH_REDIRECT):
6129 Define.
6130 * sysdeps/ieee754/ldbl-opt/test-nldbl-redirect.c: New file.
6131 * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math] (tests):
6132 Add test-nldbl-redirect.
6133 [$(subdir) = math] (CFLAGS-test-nldbl-redirect.c): New variable.
6134 [$(subdir) = math] ($(objpfx)test-nldbl-redirect): Depend on
6135 $(objpfx)libnldbl_nonshared.a.
6136
6137 2018-10-04 Stefan Liebler <stli@linux.ibm.com>
6138
6139 * support/support.h (support_objdir_elf_ldso): New variable.
6140 * support/support_paths.c (support_objdir_elf_ldso): Likewise.
6141 * support/Makefile (CFLAGS-support_paths.c): Add definition
6142 for OBJDIR_ELF_LDSO_PATH.
6143 * support/test-container.c (main): Search for the ld.so
6144 which is also used by the testsuite.
6145
6146 2018-10-02 Rafal Luzynski <digitalfreak@lingonborough.com>
6147
6148 [BZ #20209]
6149 * localedata/locales/kl_GL: (abday): Fix spelling of Sun (Sunday),
6150 should be "sap" rather than "sab".
6151 (day): Fix spelling of Sunday, should be "sapaat" rather than
6152 "sabaat".
6153
6154 2018-10-02 Joseph Myers <joseph@codesourcery.com>
6155
6156 * math/libm-test-fma.inc (fma_test_data): Add more tests.
6157
6158 2018-10-02 Martin Jansa <Martin.Jansa@gmail.com>
6159
6160 [BZ #19444]
6161 * sysdeps/ieee754/soft-fp/s_fdiv.c: Include <libc-diag.h> and use
6162 DIAG_PUSH_NEEDS_COMMENT, DIAG_IGNORE_NEEDS_COMMENT and
6163 DIAG_POP_NEEDS_COMMENT to disable -Wmaybe-uninitialized.
6164
6165 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6166
6167 * sysdeps/unix/sysv/linux/fd_to_filename.h: Add missing includes.
6168
6169 2018-10-02 H.J. Lu <hongjiu.lu@intel.com>
6170
6171 * sysdeps/unix/sysv/linux/x86/Makefile (CFLAGS-elision-lock.c):
6172 Add -mrtm.
6173 (CFLAGS-elision-unlock.c): Likewise.
6174 (CFLAGS-elision-timed.c): Likewise.
6175 (CFLAGS-elision-trylock.c): Likewise.
6176 * sysdeps/unix/sysv/linux/x86/hle.h: Rewritten.
6177
6178 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6179
6180 [BZ #21037]
6181 * libio/Makefile (tests): Add tst-memstream4 and tst-wmemstream4.
6182 * libio/freopen.c (freopen): Sync stream before reopen and adjust to
6183 new fd_to_filename interface.
6184 * libio/freopen64.c (freopen64): Likewise.
6185 * libio/tst-memstream.h: New file.
6186 * libio/tst-memstream4.c: Likewise.
6187 * libio/tst-wmemstream4.c: Likewise.
6188 * sysdeps/generic/fd_to_filename.h (fd_to_filename): Change signature.
6189 * sysdeps/unix/sysv/linux/fd_to_filename.h (fd_to_filename): Likewise
6190 and remove internal dynamic allocation.
6191
6192 2018-10-01 Joseph Myers <joseph@codesourcery.com>
6193
6194 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
6195 (MREMAP_MAYMOVE): Do not define here.
6196 [__USE_GNU] (MREMAP_FIXED): Likewise.
6197 * sysdeps/unix/sysv/linux/bits/mman-shared.h [__USE_GNU]
6198 (MREMAP_MAYMOVE): Define here instead.
6199 [__USE_GNU] (MREMAP_FIXED): Likewise.
6200 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_GNU]
6201 (MREMAP_MAYMOVE): Remove.
6202 [__USE_GNU] (MREMAP_FIXED): Likewise.
6203
6204 2018-09-28 Joseph Myers <joseph@codesourcery.com>
6205
6206 * math/fromfp.h: Do not include <math_private.h>.
6207 * math/s_cacosh_template.c: Likewise.
6208 * math/s_casin_template.c: Likewise.
6209 * math/s_casinh_template.c: Likewise.
6210 * math/s_ccos_template.c: Likewise.
6211 * math/s_cproj_template.c: Likewise.
6212 * math/s_fdim_template.c: Likewise.
6213 * math/s_fmaxmag_template.c: Likewise.
6214 * math/s_fminmag_template.c: Likewise.
6215 * math/s_iseqsig_template.c: Likewise.
6216 * math/s_ldexp_template.c: Likewise.
6217 * math/s_nextdown_template.c: Likewise.
6218 * math/w_log1p_template.c: Likewise.
6219 * math/w_scalbln_template.c: Likewise.
6220 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
6221 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
6222 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
6223 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
6224 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
6225 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
6226 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
6227 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
6228 * sysdeps/i386/fpu/s_atanl.c: Likewise.
6229 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
6230 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
6231 * sysdeps/i386/fpu/s_fdim.c: Likewise.
6232 * sysdeps/i386/fpu/s_logbl.c: Likewise.
6233 * sysdeps/i386/fpu/s_rintl.c: Likewise.
6234 * sysdeps/i386/fpu/s_significandl.c: Likewise.
6235 * sysdeps/ia64/fpu/s_matherrf.c: Likewise.
6236 * sysdeps/ia64/fpu/s_matherrl.c: Likewise.
6237 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
6238 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
6239 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
6240 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
6241 * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
6242 * sysdeps/ieee754/k_standardf.c: Likewise.
6243 * sysdeps/ieee754/k_standardl.c: Likewise.
6244 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
6245 * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
6246 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c: Likewise.
6247 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
6248 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
6249 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
6250 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
6251 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
6252 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
6253 * sysdeps/ieee754/s_signgam.c: Likewise.
6254 * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
6255 * sysdeps/powerpc/power5+/fpu/s_modff.c: Likewise.
6256 * sysdeps/powerpc/power7/fpu/s_logbf.c: Likewise.
6257 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
6258 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
6259 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
6260 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
6261 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
6262 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
6263 * sysdeps/riscv/rvd/s_finite.c: Likewise.
6264 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
6265 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
6266 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
6267 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
6268 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
6269 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
6270 * sysdeps/riscv/rvf/fegetround.c: Likewise.
6271 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
6272 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
6273 * sysdeps/riscv/rvf/fesetround.c: Likewise.
6274 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
6275 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
6276 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
6277 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
6278 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
6279 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
6280 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
6281 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
6282 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
6283 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
6284 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
6285 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
6286 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
6287 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
6288 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
6289 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
6290 * sysdeps/riscv/rv64/rvd/s_rint.c: Include <stdbool.h> instead of
6291 <math_private.h>.
6292 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
6293
6294 2018-09-28 H.J. Lu <hongjiu.lu@intel.com>
6295
6296 [BZ #23716]
6297 * sysdeps/i386/dl-cet.c: Removed.
6298 * sysdeps/i386/dl-machine.h (_dl_runtime_resolve_shstk): New
6299 prototype.
6300 (_dl_runtime_profile_shstk): Likewise.
6301 (elf_machine_runtime_setup): Use _dl_runtime_profile_shstk or
6302 _dl_runtime_resolve_shstk if SHSTK is enabled by kernel.
6303
6304 2018-09-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6305
6306 [BZ #23579]
6307 * misc/tst-preadvwritev2-common.c (do_test_with_invalid_fd,
6308 do_test_with_invalid_iov): New tests.
6309 * misc/tst-preadvwritev2.c, misc/tst-preadvwritev64v2.c (do_test):
6310 Call do_test_with_invalid_fd and do_test_with_invalid_iov.
6311 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Use fallback code iff
6312 errno is ENOSYS.
6313 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
6314 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
6315 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
6316
6317 2018-09-27 Joseph Myers <joseph@codesourcery.com>
6318
6319 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6320 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT]
6321 (MATH_REDIRECT_BINARY_ARGS): New macro.
6322 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6323 && !NO_MATH_REDIRECT] (copysign): Redirect using MATH_REDIRECT.
6324 * sysdeps/alpha/fpu/s_copysign.c: Define NO_MATH_REDIRECT before
6325 header inclusion.
6326 * sysdeps/alpha/fpu/s_copysignf.c: Likewise.
6327 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
6328 * sysdeps/ieee754/float128/s_copysignf128.c: Likewise.
6329 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
6330 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
6331 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
6332 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
6333 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
6334 Likewise.
6335 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
6336 Likewise.
6337 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
6338 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Likewise.
6339 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
6340 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
6341 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c:
6342 Likewise.
6343 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c:
6344 Likewise.
6345 * sysdeps/generic/math_private_calls.h
6346 [!__MATH_DECLARING_LONG_DOUBLE || !NO_LONG_DOUBLE] (__copysign):
6347 Do not declare and define as an inline function.
6348 * math/divtc3.c (__divtc3): Use copysign functions instead of
6349 __copysign variants.
6350 * math/multc3.c (__multc3): Likewise.
6351 * sysdeps/generic/math-type-macros.h (M_COPYSIGN): Likewise.
6352 * sysdeps/ieee754/dbl-64/e_atan2.c (signArctan2): Likewise.
6353 * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
6354 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
6355 Likewise.
6356 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
6357 (__ieee754_yn): Likewise.
6358 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
6359 * sysdeps/ieee754/dbl-64/s_atan.c (__signArctan): Likewise.
6360 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
6361 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
6362 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Likewise.
6363 (__sin): Likewise.
6364 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
6365 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
6366 Likewise.
6367 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
6368 Likewise.
6369 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
6370 Likewise.
6371 * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
6372 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6373 Likewise.
6374 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Likewise.
6375 (__ieee754_ynf): Likewise.
6376 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
6377 * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
6378 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
6379 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6380 Likewise.
6381 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
6382 (__ieee754_ynl): Likewise.
6383 * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
6384 * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
6385 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6386 Likewise.
6387 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
6388 (__ieee754_ynl): Likewise.
6389 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Likewise.
6390 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
6391 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
6392 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6393 Likewise.
6394 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
6395 (__ieee754_ynl)
6396 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__asinhl): Likewise.
6397 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
6398 * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c (copysignl): Likewise.
6399 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
6400 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
6401
6402 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6403 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (round): Redirect
6404 using MATH_REDIRECT.
6405 * sysdeps/aarch64/fpu/s_round.c: Define NO_MATH_REDIRECT before
6406 header inclusion.
6407 * sysdeps/aarch64/fpu/s_roundf.c: Likewise.
6408 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
6409 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
6410 * sysdeps/ieee754/float128/s_roundf128.c: Likewise.
6411 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
6412 * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
6413 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
6414 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: Likewise.
6415 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: Likewise.
6416 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Likewise.
6417 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Likewise.
6418 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
6419 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
6420 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
6421 (round): Redirect to __round.
6422 (__roundl): Call round instead of __round.
6423 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__round):
6424 Remove macro.
6425 [_ARCH_PWR5X] (__roundf): Likewise.
6426 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use round
6427 functions instead of __round variants.
6428 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
6429 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
6430 Likewise.
6431 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
6432 Likewise.
6433 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
6434 Likewise.
6435 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
6436 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lroundl): Redirect to
6437 __lroundl.
6438 (__ieee754_expl): Call roundl instead of __roundl.
6439
6440 2018-09-27 Andreas Schwab <schwab@suse.de>
6441
6442 [BZ #23717]
6443 * stdlib/tst-setcontext9.c (f1a): Make st2 static.
6444 (do_test): Make st1 static.
6445
6446 2018-09-26 Andreas Schwab <schwab@suse.de>
6447
6448 [BZ #23707]
6449 * sysdeps/powerpc/powerpc32/dl-start.S: Add unwind information.
6450 * elf/Makefile (tests): Add tst-unwind-ctor.
6451 (modules-names): Add tst-unwind-ctor-lib.
6452 ($(objpfx)tst-unwind-ctor): Depend on
6453 $(objpfx)tst-unwind-ctor-lib.so.
6454
6455 2018-09-26 Joseph Myers <joseph@codesourcery.com>
6456
6457 * sysdeps/unix/sysv/linux/bits/mman-map-flags-generic.h: New
6458 file. Most contents moved from ....
6459 * sysdeps/unix/sysv/linux/bits/mman.h: ... here. Move contents to
6460 and include <bits/mman-map-flags-generic.h>.
6461 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6462 (sysdep_headers): Add bits/mman-map-flags-generic.h.
6463 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Include
6464 <bits/mman-map-flags-generic.h>.
6465 [__USE_MISC] (MAP_GROWSUP): Only define this macro, not other
6466 macros defined in <bits/mman-map-flags-generic.h>.
6467 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Include
6468 <bits/mman-map-flags-generic.h>.
6469 [__USE_MISC] (MAP_32BIT): Only define this macro, not other macros
6470 defined in <bits/mman-map-flags-generic.h>.
6471
6472 2018-09-26 Andreas Schwab <schwab@suse.de>
6473
6474 * Makefile ($(common-objpfx)testrun.sh): Remove leading space from
6475 output.
6476
6477 2018-09-25 Adam J. Richte <adam_richter2004@yahoo.com>
6478 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6479 Fangrui Song <maskray@google.com>
6480
6481 [BZ #20480]
6482 * config.make.in (have-textrel_ifunc): New define.
6483 * configure.ac: Add check if linker supports textrel relocation with
6484 ifunc.
6485 * elf/Makefile [have-textrel_ifunc == yes] (ifunc-pie-tests): Add
6486 tst-ifunc-textrel.
6487 (CFLAGS-tst-ifunc-textrel.c): New rule.
6488 * elf/dl-reloc.c (_dl_relocate_object): Use all required flags on
6489 DT_TEXTREL segments, not only PROT_READ and PROT_WRITE.
6490 * elf/tst-ifunc-textrel.c: New file.
6491
6492 2018-09-25 Joseph Myers <joseph@codesourcery.com>
6493
6494 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
6495 <bits/procfs-prregset.h>.
6496 (prgregset_t): Define using __prgregset_t.
6497 (prfpregset_t): Define using __prfpregset_t.
6498 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6499 (sysdep_headers): Add bits/procfs-prregset.h.
6500 * sysdeps/unix/sysv/linux/bits/procfs-prregset.h: New file.
6501 * sysdeps/unix/sysv/linux/alpha/bits/procfs-prregset.h: Likewise.
6502 * sysdeps/unix/sysv/linux/alpha/bits/procfs.h: Likewise.
6503 * sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove file.
6504
6505 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
6506 <bits/procfs-id.h> and <bits/procfs-extra.h>.
6507 (struct elf_prpsinfo): Use __pr_uid_t and __pr_gid_t as types of
6508 pr_uid and pr_gid.
6509 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6510 (sysdep_headers): Add bits/procfs-id.h and bits/procfs-extra.h.
6511 * sysdeps/unix/sysv/linux/bits/procfs-extra.h: New file.
6512 * sysdeps/unix/sysv/linux/bits/procfs-id.h: Likewise.
6513 * sysdeps/unix/sysv/linux/arm/bits/procfs-id.h: Likewise.
6514 * sysdeps/unix/sysv/linux/arm/bits/procfs.h: Likewise.
6515 * sysdeps/unix/sysv/linux/m68k/bits/procfs-id.h: Likewise.
6516 * sysdeps/unix/sysv/linux/m68k/bits/procfs.h: Likewise.
6517 * sysdeps/unix/sysv/linux/s390/bits/procfs-extra.h: Likewise.
6518 * sysdeps/unix/sysv/linux/s390/bits/procfs-id.h: Likewise.
6519 * sysdeps/unix/sysv/linux/s390/bits/procfs.h: Likewise.
6520 * sysdeps/unix/sysv/linux/sh/bits/procfs-id.h: Likewise.
6521 * sysdeps/unix/sysv/linux/sh/bits/procfs.h: Likewise.
6522 * sysdeps/unix/sysv/linux/sparc/bits/procfs-extra.h: Likewise.
6523 * sysdeps/unix/sysv/linux/sparc/bits/procfs-id.h: Likewise.
6524 * sysdeps/unix/sysv/linux/sparc/bits/procfs.h: Likewise.
6525 * sysdeps/unix/sysv/linux/x86/bits/procfs-id.h: Likewise.
6526 * sysdeps/unix/sysv/linux/x86/bits/procfs.h: Likewise.
6527 * sysdeps/unix/sysv/linux/arm/sys/procfs.h: Remove file.
6528 * sysdeps/unix/sysv/linux/m68k/sys/procfs.h: Likewise.
6529 * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Likewise.
6530 * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Likewise.
6531 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
6532 * sysdeps/unix/sysv/linux/x86/sys/procfs.h: Likewise.
6533
6534 * sysdeps/unix/sysv/linux/sys/procfs.h: Replace with file based on
6535 AArch64 version. Include <bits/procfs.h>.
6536 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6537 (sysdep_headers): Add bits/procfs.h.
6538 * sysdeps/unix/sysv/linux/bits/procfs.h: New file.
6539 * sysdeps/unix/sysv/linux/aarch64/bits/procfs.h: Likewise.
6540 * sysdeps/unix/sysv/linux/hppa/bits/procfs.h: Likewise.
6541 * sysdeps/unix/sysv/linux/ia64/bits/procfs.h: Likewise.
6542 * sysdeps/unix/sysv/linux/microblaze/bits/procfs.h: Likewise.
6543 * sysdeps/unix/sysv/linux/mips/bits/procfs.h: Likewise.
6544 * sysdeps/unix/sysv/linux/nios2/bits/procfs.h: Likewise.
6545 * sysdeps/unix/sysv/linux/powerpc/bits/procfs.h: Likewise.
6546 * sysdeps/unix/sysv/linux/riscv/bits/procfs.h: Likewise.
6547 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove file.
6548 * sysdeps/unix/sysv/linux/hppa/sys/procfs.h: Likewise.
6549 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Likewise.
6550 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h: Likewise.
6551 * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
6552 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: Likewise.
6553 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
6554 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
6555
6556 2018-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6557
6558 * posix/tst-spawn.c (do_prepare, handle_restart, do_test):
6559 Use libsupport.
6560
6561 2018-09-25 Arjun Shankar <arjun@redhat.com>
6562
6563 * iconv/gconv_int.h (__gconv_path_elem): Remove.
6564 (__gconv_max_path_elem_len): Likewise.
6565 (__gconv_nmodules): Likewise.
6566 (__gconv_get_path): Likewise.
6567 (path_elem): Move to ...
6568 * iconv/gconv_conf.c: ... here.
6569 (__gconv_get_path): Mark function static.
6570 * iconv/gconv_int.h (GCONV_NCHAR_GOAL): Move to ...
6571 * iconv/gconv_open.c: ... here.
6572
6573 2018-09-24 Andreas Schwab <schwab@suse.de>
6574
6575 * scripts/haveversions.awk: New file.
6576 * Makerules ($(common-objpfx)Versions.def)
6577 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
6578 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
6579 Move rules ...
6580 * Makeconfig ($(common-objpfx)Versions.def)
6581 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
6582 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
6583 ... here.
6584 ($(common-objpfx)Versions.mk): New rule. Include it.
6585 * nis/Makefile [!have-GLIBC_2.28]: Don't build any targets.
6586 Emit error if build-obsolete-nsl = yes.
6587 * manual/install.texi (Configuring and compiling): Describe
6588 --enable-obsolete-nsl as unavaiable after version 2.28.
6589 * INSTALL: Regenerate.
6590
6591 2018-09-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6592
6593 * NEWS: Add note about new TLE support on powerpc64le.
6594 * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Remove.
6595 * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Rename tm_capable to
6596 __ununsed1.
6597 (TLS_INIT_TP, TLS_DEFINE_INIT_TP): Remove tm_capable setup.
6598 (THREAD_GET_TM_CAPABLE, THREAD_SET_TM_CAPABLE): Remove macros.
6599 * sysdeps/powerpc/powerpc32/sysdep.h,
6600 sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION_IMPL,
6601 ABORT_TRANSACTION): Remove macros.
6602 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
6603 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init): Set
6604 __pthread_force_elision iff PPC_FEATURE2_HTM_NOSC is set.
6605 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h,
6606 sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
6607 sysdeps/unix/sysv/linux/powerpc/syscall.S (ABORT_TRANSACTION): Remove
6608 usage.
6609 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: Remove file.
6610
6611 2018-09-21 Rafal Luzynski <digitalfreak@lingonborough.com>
6612
6613 [BZ #10425]
6614 * localedata/locales/it_IT (d_t_fmt): Use "%a %-d %b %Y, %T".
6615 (date_fmt): Use "%a %-d %b %Y, %T, %Z".
6616 * localedata/locales/it_CH (d_t_fmt): Use "%a %-d %b %Y, %T"
6617 which is the same as in it_IT.
6618 (d_fmt): Use "%d.%m.%Y" which is the same as in de_CH.
6619 (date_fmt): Use "%a %-d %b %Y, %T, %Z" which is the same as in it_IT.
6620
6621 2018-09-20 Joseph Myers <joseph@codesourcery.com>
6622
6623 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6624 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (trunc): Redirect
6625 using MATH_REDIRECT.
6626 * sysdeps/aarch64/fpu/s_trunc.c: Define NO_MATH_REDIRECT before
6627 header inclusion.
6628 * sysdeps/aarch64/fpu/s_truncf.c: Likewise.
6629 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
6630 * sysdeps/ieee754/float128/s_truncf128.c: Likewise.
6631 * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
6632 * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
6633 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
6634 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: Likewise.
6635 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: Likewise.
6636 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Likewise.
6637 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Likewise.
6638 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
6639 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
6640 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
6641 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
6642 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
6643 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
6644 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
6645 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
6646 (ceil): Redirect to __ceil.
6647 (floor): Redirect to __floor.
6648 (trunc): Redirect to __trunc.
6649 (__truncl): Call trunc instead of __trunc.
6650 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__trunc):
6651 Remove macro.
6652 [_ARCH_PWR5X] (__truncf): Likewise.
6653 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Use
6654 trunc functions instead of __trunc variants.
6655 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6656 Likewise.
6657 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6658 Likewise.
6659 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6660 Likewise.
6661 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6662 Likewise.
6663
6664 * sysdeps/x86/cpu-features.h [__geode__ || __k6__]: Handle like
6665 [__i586__ || __pentium__].
6666 [__i486__]: Handle explicitly.
6667 (HAS_CPUID): Define to 1 if above macros are undefined.
6668 (HAS_I586): Likewise.
6669 (HAS_I686): Likewise.
6670
6671 2018-09-20 Florian Weimer <fweimer@redhat.com>
6672
6673 * misc/tst-gethostid.c: New file.
6674 * misc/Makefile [$(build-shared)] (tests): Add tst-gethostid.
6675 (tst-gethostid): Link with -ldl.
6676
6677 2018-09-20 Mingli Yu <Mingli.Yu@windriver.com>
6678
6679 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Check for NULL
6680 value from gethostbyname_r.
6681
6682 2018-09-19 Carlos O'Donell <carlos@redhat.com>
6683
6684 * stdlib/tst-setcontext9.c (f1): Rename to...
6685 (f1a): ... this.
6686 (f1b): New function implementing lower half of f1 in alternate stack.
6687
6688 2018-09-19 Paul Eggert <eggert@cs.ucla.edu>
6689
6690 Fix mktime localtime offset confusion
6691 [BZ #23603]
6692 * include/time.h (__mktime_internal): The localtime offset is now
6693 of type long int instead of time_t. This is the longstanding type
6694 in glibc, and it is more than enough to represent difference
6695 between localtime and gmtime even if it is 32 bits and time_t is
6696 64. Changing it now will let us avoid an unnecessary change when
6697 time_t is widened to 64 bits on 32-bit platforms.
6698 * time/mktime-internal.h (mktime_offset_t): Now long int.
6699
6700 Merge mktime, timegm from upstream Gnulib
6701 [BZ #23603][BZ #16346]
6702 This fixes some obscure problems with integer overflow.
6703 Although it looks scary, it is almost all a byte-for-byte copy
6704 from Gnulib, and the Gnulib code has been tested reasonably well.
6705 * include/intprops.h: New file, copied from Gnulib.
6706 * include/verify.h, time/mktime-internal.h:
6707 New tiny files, simplified from Gnulib.
6708 * time/mktime.c: Copy from Gnulib. This has the following changes:
6709 Do not include config.h if DEBUG_MKTIME is nonzero.
6710 Include stdbool.h, intprops.h, verify.h.
6711 Include string.h only if needed.
6712 Include stdlib.h on MS-Windows.
6713 Include mktime-internal.h.
6714 (DEBUG_MKTIME): Default to 0, and simplify later uses.
6715 (NEED_MKTIME_INTERNAL, NEED_MKTIME_WINDOWS)
6716 (NEED_MKTIME_WORKING): Give default values to pacify -Wundef,
6717 which glibc uses. Default NEED_MKTIME_WORKING to DEBUG_MKTIME, to
6718 simplify later conditionals; default the others to zero. Use
6719 these conditionals to express only the code needed on the current
6720 platform. In uses of these conditionals, explicitly spell out how
6721 _LIBC affects things, so it’s easier to review from a glibc
6722 viewpoint.
6723 (WRAPV): Remove; no longer needed now that we have
6724 systematic overflow checking.
6725 (my_tzset, __tzset) [!_LIBC]: New function and macro, to better
6726 compartmentalize tzset issues. Move system-dependent tzsettish
6727 code here from mktime.
6728 (verify): Remove; now done by verify.h. All uses changed.
6729 (long_int): Use a more-conservative definition, to avoid
6730 integer overflow.
6731 (SHR): Remove, replacing with ...
6732 (shr): New function, which means we needn’t worry about side
6733 effects in args, and conversion analysis is simpler.
6734 (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT, TYPE_SIGNED, TYPE_MINIMUM)
6735 (TYPE_MAXIMUM, TIME_T_MIN, TIME_T_MAX, TIME_T_MIDPOINT)
6736 (time_t_avg, time_t_add_ok): Remove.
6737 (mktime_min, mktime_max): New constants.
6738 (leapyear, isdst_differ): Use bool for booleans.
6739 (ydhms_diff, guess_time_tm, ranged_convert, __mktime_internal):
6740 Use long_int, not time_t, for mktime differences.
6741 (long_int_avg): New function, replacing time_t_avg.
6742 INT_ADD_WRAPV replaces time_t_add_ok.
6743 (guess_time_tm): 6th arg is now long_int, not time_t const *.
6744 All uses changed.
6745 (convert_time): New function.
6746 (ranged_convert): Use it.
6747 (__mktime_internal): Last arg now points to mktime_offset_t, not
6748 time_t. All uses changed. This is a no-op on glibc, where
6749 mktime_offset_t is always time_t. Use int, not time_t, for UTC
6750 offset guess. Directly check for integer overflow instead of
6751 using a heuristic that works only 99.9...% of the time.
6752 Access *OFFSET only once, to avoid an unlikely race if the
6753 compiler delays a load and if this cascades into a signed integer
6754 overflow.
6755 (mktime): Move tzsettish code to my_tzset, and move
6756 localtime_offset to within mktime so that it doesn’t
6757 need a separate ifdef.
6758 (main) [DEBUG_MKTIME]: Speed up by using localtime_r
6759 instead of localtime.
6760 * time/timegm.c: Copy from Gnulib. This has the following changes:
6761 Include mktime-internal.h.
6762 [!_LIBC]: Include config.h and time.h. Do not include
6763 timegm.h or time_r.h. Make __mktime_internal a macro,
6764 and include mktime-internal.h to get its declaration.
6765 (timegm): Temporary is now mktime_offset_t, not time_t.
6766 This affects only Gnulib.
6767
6768 2018-09-19 Wilco Dijkstra <wdijkstr@arm.com>
6769
6770 [BZ #23637]
6771 * string/test-strstr.c (pr23637): New function.
6772 (test_main): Add tests with longer needles.
6773 * string/strcasestr.c (AVAILABLE): Fix readahead distance.
6774 * string/strstr.c (AVAILABLE): Likewise.
6775
6776 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
6777
6778 * sysdeps/ieee754/flt-32/e_powf.c (checkint): Fix documentation.
6779
6780 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
6781
6782 * NEWS: Mention pow improvements.
6783 * math/Makefile (type-double-routines): Add e_pow_log_data.
6784 * sysdeps/generic/math_private.h (__exp1): Remove.
6785 * sysdeps/i386/fpu/e_pow_log_data.c: New file.
6786 * sysdeps/ia64/fpu/e_pow_log_data.c: New file.
6787 * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_pow.c): Allow fma
6788 contraction.
6789 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove.
6790 (exp_inline): Remove.
6791 (__ieee754_exp): Only single double input is handled.
6792 * sysdeps/ieee754/dbl-64/e_pow.c: Rewrite.
6793 * sysdeps/ieee754/dbl-64/e_pow_log_data.c: New file.
6794 * sysdeps/ieee754/dbl-64/math_config.h (issignaling_inline): Define.
6795 (__pow_log_data): Define.
6796 * sysdeps/ieee754/dbl-64/upow.h: Remove.
6797 * sysdeps/ieee754/dbl-64/upow.tbl: Remove.
6798 * sysdeps/m68k/m680x0/fpu/e_pow_log_data.c: New file.
6799 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_pow-fma.c): Allow fma
6800 contraction.
6801 (CFLAGS-e_pow-fma4.c): Likewise.
6802
6803 2018-09-18 Paul Eggert <eggert@cs.ucla.edu>
6804
6805 Simplify tzfile fstat failure code
6806 [BZ #21716]
6807 * time/tzfile.c (__tzfile_read): Simplify slightly.
6808
6809 Fix tzfile low-memory assertion failure
6810 [BZ #21716]
6811 * time/tzfile.c (__tzfile_read): Check for memory exhaustion
6812 when registering time zone abbreviations.
6813
6814 2018-09-18 Joseph Myers <joseph@codesourcery.com>
6815
6816 * sysdeps/unix/sysv/linux/bits/mman.h: New file.
6817 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h: Remove.
6818 * sysdeps/unix/sysv/linux/arm/bits/mman.h: Likewise.
6819 * sysdeps/unix/sysv/linux/m68k/bits/mman.h: Likewise.
6820 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h: Likewise.
6821 * sysdeps/unix/sysv/linux/nios2/bits/mman.h: Likewise.
6822 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
6823 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
6824 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
6825
6826 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c (ceil): Redirect to
6827 __ceil.
6828 (__ceill): Call ceil instead of __ceil.
6829 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c (floor): Redirect to
6830 __floor.
6831 (__floorl): Call floor instead of __floor.
6832
6833 2018-09-17 Joseph Myers <joseph@codesourcery.com>
6834
6835 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6836 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (ceil): Redirect
6837 using MATH_REDIRECT.
6838 * sysdeps/aarch64/fpu/s_ceil.c: Define NO_MATH_REDIRECT before
6839 header inclusion.
6840 * sysdeps/aarch64/fpu/s_ceilf.c: Likewise.
6841 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
6842 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
6843 * sysdeps/ieee754/float128/s_ceilf128.c: Likewise.
6844 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
6845 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
6846 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
6847 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
6848 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Likewise.
6849 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: Likewise.
6850 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Likewise.
6851 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Likewise.
6852 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
6853 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
6854 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
6855 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
6856 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
6857 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
6858 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__ceil):
6859 Remove macro.
6860 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use ceil
6861 functions instead of __ceil variants.
6862 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
6863 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
6864 Likewise.
6865 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
6866 Likewise.
6867 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
6868 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
6869 Likewise.
6870 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
6871 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
6872
6873 [BZ #21286]
6874 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SI_DETHREAD): New
6875 constant.
6876 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (ILL_BADIADDR): Likewise.
6877 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_FLTUNK): Likewise.
6878 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_CONDTRAP): Likewise.
6879 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ACCADI): Likewise.
6880 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIDERR): Likewise.
6881 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIPERR): Likewise.
6882 [__USE_XOPEN_EXTENDED] (TRAP_BRANCH): Likewise.
6883 [__USE_XOPEN_EXTENDED] (TRAP_HWBKPT): Likewise.
6884 [__USE_XOPEN_EXTENDED] (TRAP_UNK): Likweise.
6885 * sysdeps/unix/sysv/linux/ia64/bits/siginfo-consts-arch.h
6886 (ILL_BADIADDR): Remove constant.
6887 (TRAP_BRANCH): Likewise.
6888 (TRAP_HWBKPT): Likewise.
6889
6890 2018-09-14 Joseph Myers <joseph@codesourcery.com>
6891
6892 [BZ #23656]
6893 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prstatus):
6894 Remove [_MIPS_SIM = _ABIN32] conditional case.
6895 (struct elf_prpsinfo): Likewise.
6896
6897 [BZ #23649]
6898 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h (struct
6899 elf_prpsinfo): Use unsigned int for pr_uid and pr_gid.
6900 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prpsinfo):
6901 Likewise.
6902 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h (struct
6903 elf_prpsinfo): Likewise.
6904 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h (struct
6905 elf_prpsinfo): Likewise.
6906 * sysdeps/unix/sysv/linux/sys/procfs.h (struct elf_prpsinfo):
6907 Likewise.
6908
6909 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6910 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (rint): Redirect
6911 using MATH_REDIRECT.
6912 * sysdeps/aarch64/fpu/s_rint.c: Define NO_MATH_REDIRECT before
6913 header inclusion.
6914 * sysdeps/aarch64/fpu/s_rintf.c: Likewise.
6915 * sysdeps/alpha/fpu/s_rint.c: Likewise.
6916 * sysdeps/alpha/fpu/s_rintf.c: Likewise.
6917 * sysdeps/i386/fpu/s_rintl.c: Likewise.
6918 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
6919 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
6920 * sysdeps/ieee754/float128/s_rintf128.c: Likewise.
6921 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
6922 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
6923 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
6924 * sysdeps/m68k/coldfire/fpu/s_rint.c: Likewise.
6925 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Likewise.
6926 * sysdeps/m68k/m680x0/fpu/s_rint.c: Likewise.
6927 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
6928 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
6929 * sysdeps/powerpc/fpu/s_rint.c: Likewise.
6930 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
6931 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
6932 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
6933 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
6934 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
6935 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
6936 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
6937 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
6938 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
6939 * sysdeps/x86_64/fpu/math_private.h: Remove file.
6940 * math/e_scalb.c (invalid_fn): Use rint functions instead of
6941 __rint variants.
6942 * math/e_scalbf.c (invalid_fn): Likewise.
6943 * math/e_scalbl.c (invalid_fn): Likewise.
6944 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
6945 Likewise.
6946 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6947 Likewise.
6948 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
6949 * sysdeps/ieee754/k_standardl.c (__kernel_standard_l): Likewise.
6950 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6951 Likewise.
6952 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6953 Likewise.
6954 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6955 Likewise.
6956 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c (__llrint): Likewise.
6957 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c (__llrintf): Likewise.
6958
6959 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6960 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (MATH_REDIRECT):
6961 New macro.
6962 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6963 && !NO_MATH_REDIRECT] (MATH_REDIRECT_LDBL): Likewise.
6964 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6965 && !NO_MATH_REDIRECT] (MATH_REDIRECT_F128): Likewise.
6966 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6967 && !NO_MATH_REDIRECT] (MATH_REDIRECT_UNARY_ARGS): Likewise.
6968 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6969 && !NO_MATH_REDIRECT] (sqrt): Redirect using MATH_REDIRECT.
6970 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6971 && !NO_MATH_REDIRECT] (floor): Likewise.
6972 * sysdeps/aarch64/fpu/s_floor.c: Define NO_MATH_REDIRECT before
6973 header inclusion.
6974 * sysdeps/aarch64/fpu/s_floorf.c: Likewise.
6975 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
6976 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
6977 * sysdeps/ieee754/float128/s_floorf128.c: Likewise.
6978 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
6979 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
6980 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
6981 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
6982 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: Likewise.
6983 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: Likewise.
6984 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Likewise.
6985 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Likewise.
6986 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
6987 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
6988 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
6989 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
6990 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
6991 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
6992 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__floor):
6993 Remove macro.
6994 [_ARCH_PWR5X] (__floorf): Likewise.
6995 * sysdeps/x86_64/fpu/math_private.h [__SSE4_1__] (__floor): Remove
6996 inline function.
6997 [__SSE4_1__] (__floorf): Likewise.
6998 * math/w_lgamma_main.c (LGFUNC (__lgamma)): Use floor functions
6999 instead of __floor variants.
7000 * math/w_lgamma_r_compat.c (__lgamma_r): Likewise.
7001 * math/w_lgammaf_main.c (LGFUNC (__lgammaf)): Likewise.
7002 * math/w_lgammaf_r_compat.c (__lgammaf_r): Likewise.
7003 * math/w_lgammal_main.c (LGFUNC (__lgammal)): Likewise.
7004 * math/w_lgammal_r_compat.c (__lgammal_r): Likewise.
7005 * math/w_tgamma_compat.c (__tgamma): Likewise.
7006 * math/w_tgamma_template.c (M_DECL_FUNC (__tgamma)): Likewise.
7007 * math/w_tgammaf_compat.c (__tgammaf): Likewise.
7008 * math/w_tgammal_compat.c (__tgammal): Likewise.
7009 * sysdeps/ieee754/dbl-64/e_lgamma_r.c (sin_pi): Likewise.
7010 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2):
7011 Likewise.
7012 * sysdeps/ieee754/dbl-64/lgamma_neg.c (__lgamma_neg): Likewise.
7013 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Likewise.
7014 * sysdeps/ieee754/flt-32/lgamma_negf.c (__lgamma_negf): Likewise.
7015 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
7016 Likewise.
7017 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
7018 * sysdeps/ieee754/ldbl-128/lgamma_negl.c (__lgamma_negl):
7019 Likewise.
7020 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Likewise.
7021 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c (__ieee754_lgammal_r):
7022 Likewise.
7023 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
7024 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c (__lgamma_negl):
7025 Likewise.
7026 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
7027 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
7028 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
7029 * sysdeps/ieee754/ldbl-96/lgamma_negl.c (__lgamma_negl): Likewise.
7030 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
7031 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
7032
7033 2018-09-12 Joseph Myers <joseph@codesourcery.com>
7034
7035 * elf/Makefile (modules-names-tests): New variable.
7036
7037 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
7038
7039 * NEWS: Mention log2 improvements.
7040 * math/Makefile (type-double-routines): Add e_log2_data.
7041 * sysdeps/i386/fpu/e_log2_data.c: New file.
7042 * sysdeps/ia64/fpu/e_log2_data.c: New file.
7043 * sysdeps/ieee754/dbl-64/e_log2.c: Rewrite.
7044 * sysdeps/ieee754/dbl-64/e_log2_data.c: New file.
7045 * sysdeps/ieee754/dbl-64/math_config.h (__log2_data): Add.
7046 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: Remove.
7047 * sysdeps/m68k/m680x0/fpu/e_log2_data.c: New file.
7048
7049 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
7050
7051 * NEWS: Mention log improvement.
7052 * math/Makefile (type-double-routines): Add e_log_data.
7053 * sysdeps/i386/fpu/e_log_data.c: New file.
7054 * sysdeps/ia64/fpu/e_log_data.c: New file.
7055 * sysdeps/ieee754/dbl-64/e_log.c: Rewrite.
7056 * sysdeps/ieee754/dbl-64/e_log_data.c: New file.
7057 * sysdeps/ieee754/dbl-64/math_config.h (__log_data): Add.
7058 * sysdeps/ieee754/dbl-64/ulog.h: Remove.
7059 * sysdeps/ieee754/dbl-64/ulog.tbl: Remove.
7060 * sysdeps/m68k/m680x0/fpu/e_log_data.c: New file.
7061
7062 2018-09-12 H.J. Lu <hongjiu.lu@intel.com>
7063 Xuepeng Guo <xuepeng.guo@intel.com>
7064
7065 [BZ #23606]
7066 * sysdeps/i386/start.S: Include <sysdep.h>
7067 (_start): Use ENTRY/END to insert ENDBR32 at entry when CET is
7068 enabled. Add cfi_undefined (eip).
7069
7070 2018-09-11 Joseph Myers <joseph@codesourcery.com>
7071
7072 * sysdeps/x86_64/fpu/math_private.h (MOVD): Remove macro.
7073 (MOVQ): Likewise.
7074 (EXTRACT_WORDS64): Likewise.
7075 (INSERT_WORDS64): Likewise.
7076 (GET_FLOAT_WORD): Likewise.
7077 (SET_FLOAT_WORD): Likewise.
7078
7079 * scripts/build-many-glibcs.py (Context.__init__): Add full_gcc
7080 argument.
7081 (Config.build_gcc): Use --disable-libsanitizer for first GCC
7082 build, but not for second build if --full-gcc. Use
7083 --enable-languages=all for second build if --full-gcc.
7084 (get_parser): Add --full-gcc option.
7085 (main): Update call to Context.
7086
7087 2018-09-10 Rafal Luzynski <digitalfreak@lingonborough.com>
7088
7089 [BZ #10797]
7090 * localedata/locales/de_CH (mon_thousands_sep): Use "<U2019>" (Right
7091 Single Quotation Mark).
7092 (thousands_sep): Likewise.
7093 * localedata/locales/it_CH (LC_NUMERIC): Use “copy "de_CH"”.
7094 * localedata/locales/it_IT (thousands_sep): Use ".".
7095 (grouping): Use "3;3".
7096
7097 2018-09-10 Joseph Myers <joseph@codesourcery.com>
7098
7099 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
7100 x86_64 and i686 configs using --enable-obsolete-rpc
7101 --enable-obsolete-nsl.
7102
7103 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
7104
7105 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
7106
7107 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
7108
7109 * sysdeps/unix/sysv/linux/spawni.c (maybe_script_execute):
7110 Increment size of new_argv by one.
7111
7112 2018-09-05 Rafal Luzynski <digitalfreak@lingonborough.com>
7113
7114 [BZ #17426]
7115 * localedata/locales/anp_IN (d_fmt): Use "%-d//%-m//%y".
7116 * localedata/locales/ar_IN (d_fmt): Likewise.
7117 * localedata/locales/bhb_IN (d_fmt): Likewise.
7118 * localedata/locales/bho_IN (d_fmt): Likewise.
7119 * localedata/locales/bn_BD (d_fmt): Likewise.
7120 * localedata/locales/bn_IN (d_fmt): Likewise.
7121 * localedata/locales/doi_IN (d_fmt): Likewise.
7122 * localedata/locales/gu_IN (d_fmt): Likewise.
7123 * localedata/locales/hi_IN (d_fmt): Likewise.
7124 * localedata/locales/hne_IN (d_fmt): Likewise.
7125 * localedata/locales/kn_IN (d_fmt): Likewise.
7126 * localedata/locales/mag_IN (d_fmt): Likewise.
7127 * localedata/locales/mai_IN (d_fmt): Likewise.
7128 * localedata/locales/mjw_IN (d_fmt): Likewise.
7129 * localedata/locales/ml_IN (d_fmt): Likewise.
7130 * localedata/locales/mni_IN (d_fmt): Likewise.
7131 * localedata/locales/mr_IN (d_fmt): Likewise.
7132 * localedata/locales/pa_IN (d_fmt): Likewise.
7133 * localedata/locales/raj_IN (d_fmt): Likewise.
7134 * localedata/locales/sat_IN (d_fmt): Likewise.
7135 * localedata/locales/sd_IN (d_fmt): Likewise.
7136 * localedata/locales/sd_IN@devanagari (d_fmt): Likewise.
7137 * localedata/locales/ta_IN (d_fmt): Likewise.
7138 * localedata/locales/ta_LK (d_fmt): Likewise.
7139 * localedata/locales/tcy_IN (d_fmt): Likewise.
7140 * localedata/locales/ur_IN (d_fmt): Likewise.
7141
7142 * localedata/locales/brx_IN (d_fmt): Use "%-m//%-d//%y".
7143 * localedata/locales/ks_IN (d_fmt): Likewise.
7144 * localedata/locales/ks_IN@devanagari (d_fmt): Likewise.
7145
7146 * localedata/locales/kok_IN (d_fmt): Use "%-d-%-m-%y".
7147 * localedata/locales/ne_NP (d_fmt): Use "%y//%-m//%-d".
7148 * localedata/locales/sa_IN (d_fmt): Use "%-d-%m-%y".
7149 * localedata/locales/te_IN (d_fmt): Use "%d-%m-%y".
7150
7151 2018-09-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
7152
7153 * NEWS: Mention exp and exp2 improvements.
7154 * math/Makefile (libm-support): Remove t_exp.
7155 (type-double-routines): Add math_err and e_exp_data.
7156 * sysdeps/aarch64/libm-test-ulps: Update.
7157 * sysdeps/arm/libm-test-ulps: Update.
7158 * sysdeps/i386/fpu/e_exp_data.c: New file.
7159 * sysdeps/i386/fpu/math_err.c: New file.
7160 * sysdeps/i386/fpu/t_exp.c: Remove.
7161 * sysdeps/ia64/fpu/e_exp_data.c: New file.
7162 * sysdeps/ia64/fpu/math_err.c: New file.
7163 * sysdeps/ia64/fpu/t_exp.c: Remove.
7164 * sysdeps/ieee754/dbl-64/e_exp.c: Rewrite.
7165 * sysdeps/ieee754/dbl-64/e_exp2.c: Rewrite.
7166 * sysdeps/ieee754/dbl-64/e_exp_data.c: New file.
7167 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Update error bound.
7168 * sysdeps/ieee754/dbl-64/eexp.tbl: Remove.
7169 * sysdeps/ieee754/dbl-64/math_config.h: New file.
7170 * sysdeps/ieee754/dbl-64/math_err.c: New file.
7171 * sysdeps/ieee754/dbl-64/t_exp.c: Remove.
7172 * sysdeps/ieee754/dbl-64/t_exp2.h: Remove.
7173 * sysdeps/ieee754/dbl-64/uexp.h: Remove.
7174 * sysdeps/ieee754/dbl-64/uexp.tbl: Remove.
7175 * sysdeps/m68k/m680x0/fpu/e_exp_data.c: New file.
7176 * sysdeps/m68k/m680x0/fpu/math_err.c: New file.
7177 * sysdeps/m68k/m680x0/fpu/t_exp.c: Remove.
7178 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
7179 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
7180
7181 2018-09-05 Joseph Myers <joseph@codesourcery.com>
7182
7183 * sysdeps/alpha/fpu/math_private.h: Remove.
7184
7185 * sysdeps/generic/math_private.h
7186 [__HAVE_DISTINCT_FLOAT128 && !__GNUC_PREREQ (7, 0)] (__isinff128):
7187 Move this inline function ....
7188 [__HAVE_DISTINCT_FLOAT128] (fabsf128): And this one ....
7189 * include/math.h [!_ISOMAC]: To here....
7190
7191 2018-09-04 Joseph Myers <joseph@codesourcery.com>
7192
7193 * sysdeps/generic/fenv_private.h [FE_ALL_EXCEPT == 0]: Move this
7194 code ....
7195 [!FE_HAVE_ROUNDING_MODES]: And this code ....
7196 * include/fenv.h [!_ISOMAC]: ... to here.
7197 * math/fraiseexcpt.c (__feraiseexcept): Undefine as macro.
7198 (feraiseexcept): Likewise.
7199 * math/fromfp.h: Do not include <fenv_private.h>.
7200 * math/s_cexp_template.c: Likewise.
7201 * math/s_csin_template.c: Likewise.
7202 * math/s_csinh_template.c: Likewise.
7203 * math/s_ctan_template.c: Likewise.
7204 * math/s_ctanh_template.c: Likewise.
7205 * math/s_iseqsig_template.c: Likewise.
7206 * math/w_acos_compat.c: Likewise.
7207 * math/w_acosf_compat.c: Likewise.
7208 * math/w_acosl_compat.c: Likewise.
7209 * math/w_asin_compat.c: Likewise.
7210 * math/w_asinf_compat.c: Likewise.
7211 * math/w_asinl_compat.c: Likewise.
7212 * math/w_j0_compat.c: Likewise.
7213 * math/w_j0f_compat.c: Likewise.
7214 * math/w_j0l_compat.c: Likewise.
7215 * math/w_j1_compat.c: Likewise.
7216 * math/w_j1f_compat.c: Likewise.
7217 * math/w_j1l_compat.c: Likewise.
7218 * math/w_jn_compat.c: Likewise.
7219 * math/w_jnf_compat.c: Likewise.
7220 * math/w_log10_compat.c: Likewise.
7221 * math/w_log10f_compat.c: Likewise.
7222 * math/w_log10l_compat.c: Likewise.
7223 * math/w_log2_compat.c: Likewise.
7224 * math/w_log2f_compat.c: Likewise.
7225 * math/w_log2l_compat.c: Likewise.
7226 * math/w_log_compat.c: Likewise.
7227 * math/w_logf_compat.c: Likewise.
7228 * math/w_logl_compat.c: Likewise.
7229 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
7230 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
7231 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
7232 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
7233 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
7234 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
7235 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
7236 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
7237 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
7238 * sysdeps/ieee754/k_standardl.c: Likewise.
7239 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
7240 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
7241 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
7242 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
7243 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
7244 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
7245 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
7246 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
7247 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
7248 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
7249 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
7250 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
7251 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
7252 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
7253 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
7254 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
7255 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
7256 * math/w_ilogb_template.c: Include <fenv.h> instead of
7257 <fenv_private.h>.
7258 * math/w_llogb_template.c: Likewise.
7259 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
7260 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
7261
7262 2018-09-03 Joseph Myers <joseph@codesourcery.com>
7263
7264 * sysdeps/generic/math_private.h: Do not include <fenv_private.h>.
7265 * math/fromfp.h: Include <fenv_private.h>.
7266 * math/math-narrow.h: Likewise.
7267 * math/s_cexp_template.c: Likewise.
7268 * math/s_csin_template.c: Likewise.
7269 * math/s_csinh_template.c: Likewise.
7270 * math/s_ctan_template.c: Likewise.
7271 * math/s_ctanh_template.c: Likewise.
7272 * math/s_iseqsig_template.c: Likewise.
7273 * math/w_acos_compat.c: Likewise.
7274 * math/w_acosf_compat.c: Likewise.
7275 * math/w_acosl_compat.c: Likewise.
7276 * math/w_asin_compat.c: Likewise.
7277 * math/w_asinf_compat.c: Likewise.
7278 * math/w_asinl_compat.c: Likewise.
7279 * math/w_ilogb_template.c: Likewise.
7280 * math/w_j0_compat.c: Likewise.
7281 * math/w_j0f_compat.c: Likewise.
7282 * math/w_j0l_compat.c: Likewise.
7283 * math/w_j1_compat.c: Likewise.
7284 * math/w_j1f_compat.c: Likewise.
7285 * math/w_j1l_compat.c: Likewise.
7286 * math/w_jn_compat.c: Likewise.
7287 * math/w_jnf_compat.c: Likewise.
7288 * math/w_llogb_template.c: Likewise.
7289 * math/w_log10_compat.c: Likewise.
7290 * math/w_log10f_compat.c: Likewise.
7291 * math/w_log10l_compat.c: Likewise.
7292 * math/w_log2_compat.c: Likewise.
7293 * math/w_log2f_compat.c: Likewise.
7294 * math/w_log2l_compat.c: Likewise.
7295 * math/w_log_compat.c: Likewise.
7296 * math/w_logf_compat.c: Likewise.
7297 * math/w_logl_compat.c: Likewise.
7298 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
7299 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
7300 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
7301 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
7302 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
7303 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
7304 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
7305 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
7306 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
7307 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
7308 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
7309 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
7310 * sysdeps/ieee754/dbl-64/gamma_product.c: Likewise.
7311 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
7312 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
7313 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
7314 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
7315 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
7316 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
7317 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
7318 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
7319 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
7320 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
7321 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
7322 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
7323 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
7324 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
7325 * sysdeps/ieee754/dbl-64/x2y2m1.c: Likewise.
7326 * sysdeps/ieee754/float128/float128_private.h: Likewise.
7327 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
7328 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
7329 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
7330 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
7331 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
7332 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
7333 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
7334 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
7335 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
7336 * sysdeps/ieee754/k_standardl.c: Likewise.
7337 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
7338 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
7339 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
7340 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
7341 * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
7342 * sysdeps/ieee754/ldbl-128/lgamma_negl.c: Likewise.
7343 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
7344 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
7345 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
7346 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
7347 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
7348 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
7349 * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
7350 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
7351 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
7352 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
7353 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
7354 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c: Likewise.
7355 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
7356 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
7357 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
7358 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
7359 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
7360 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
7361 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
7362 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
7363 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
7364 * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
7365 * sysdeps/ieee754/ldbl-96/lgamma_negl.c: Likewise.
7366 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
7367 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
7368 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
7369 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
7370 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
7371 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
7372 * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
7373 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
7374 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
7375 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
7376 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
7377 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
7378 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
7379 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
7380 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
7381 * sysdeps/riscv/rvd/s_finite.c: Likewise.
7382 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
7383 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
7384 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
7385 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
7386 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
7387 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
7388 * sysdeps/riscv/rvf/fegetround.c: Likewise.
7389 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
7390 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
7391 * sysdeps/riscv/rvf/fesetround.c: Likewise.
7392 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
7393 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
7394 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
7395 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
7396 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
7397 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
7398 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
7399 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
7400 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
7401 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
7402 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
7403 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
7404 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
7405 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
7406 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
7407 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
7408
7409 2018-08-31 Paul Pluzhnikov <ppluzhnikov@google.com>
7410
7411 [BZ #20271]
7412 * include/stdio.h (__libc_fatal): Mention newline in comment.
7413 * grp/initgroups.c (internal_getgrouplist): Add missing newline.
7414 * nptl/pthread_cond_wait.c (__pthread_cond_wait_common): Likewise.
7415 * nscd/initgrcache.c (addinitgroupsX): Likewise.
7416 * nss/nsswitch.c (__nss_next2): Likewise.
7417 * sysdeps/aarch64/dl-irel.h (elf_irela): Likewise.
7418 * sysdeps/arm/dl-irel.h (elf_irel): Likewise.
7419 * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Likewise.
7420 * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
7421 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irel): Likewise.
7422 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irel): Likewise.
7423 * sysdeps/s390/dl-irel.h (elf_irel): Likewise.
7424 * sysdeps/sparc/sparc32/dl-irel.h (elf_irel): Likewise.
7425 * sysdeps/sparc/sparc64/dl-irel.h (elf_irel): Likewise.
7426 * sysdeps/x86_64/dl-irel.h (elf_irel): Likewise.
7427 * sysdeps/nptl/futex-internal.h (futex_wake): Likewise.
7428 * sysdeps/unix/sysv/linux/netlink_assert_response.c
7429 (__netlink_assert_response): Likewise.
7430
7431 2018-08-31 Joseph Myers <joseph@codesourcery.com>
7432
7433 * conform/glibcconform.py: New file.
7434 * conform/list-header-symbols.py: Likewise.
7435 * conform/list-header-symbols.pl: Remove.
7436 * conform/Makefile (tests-special): Only add linknamespace tests
7437 if [PYTHON].
7438 ($(linknamespace-symlists-tests)): Use list-header-symbols.py.
7439
7440 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
7441
7442 [BZ #23597]
7443 * support/Makefile (libsupport-routines): Add
7444 support_copy_file_range and xcopy_file_range.
7445 * support/support.h: Include <sys/types.h>.
7446 (support_copy_file_range): New prototype.
7447 * support/support_copy_file_range.c: New file. Copied and
7448 modified from io/copy_file_range-compat.c.
7449 * support/test-container.c (copy_one_file): Call xcopy_file_rang
7450 instead of copy_file_range.
7451 * support/xcopy_file_range.c: New file.
7452 * support/xunistd.h (xcopy_file_range): New prototype.
7453
7454 2018-08-30 Carlos O'Donell <carlos@redhat.com>
7455
7456 * elf/tst-dlopen-aout.c: Include support/xthread.h. Use
7457 xpthread_create and xpthread_join.
7458
7459 2018-08-30 Florian Weimer <fweimer@redhat.com>
7460
7461 * stdlib/stdlib.h (reallocarray): Make available under __USE_MISC.
7462
7463 2018-08-30 Stefan Liebler <stli@linux.ibm.com>
7464
7465 * stdlib/test-bz22786.c (do_test): Return EXIT_UNSUPPORTED
7466 if malloc fails.
7467
7468 2018-08-29 Joseph Myers <joseph@codesourcery.com>
7469
7470 * math/gen-libm-test.py (gen_test_args_res): Also treat plus_oflow
7471 and minus_oflow as non-finite.
7472
7473 2018-08-28 Joseph Myers <joseph@codesourcery.com>
7474
7475 * sysdeps/aarch64/fpu/fenv_private.h: New file. Based on ....
7476 * sysdeps/aarch64/fpu/math_private.h: ... this file. All contents
7477 moved to fenv_private.h except for ...
7478 (TOINT_INTRINSICS): Kept in math_private.h.
7479 (roundtoint): Likewise.
7480 (converttoint): Likewise.
7481 * sysdeps/arm/fenv_private.h: Change multiple-include guard to
7482 [ARM_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7483 * sysdeps/arm/math_private.h: Remove.
7484 * sysdeps/generic/fenv_private.h: New file. Contents moved from
7485 ....
7486 * sysdeps/generic/math_private.h: ... this file. Include
7487 <stdbool.h>. Do not include <fenv.h> or <get-rounding-mode.h>.
7488 Include <fenv_private.h>. Remove functions and macros moved to
7489 fenv_private.h.
7490 * sysdeps/i386/fpu/math_private.h: Remove.
7491 * sysdeps/mips/math_private.h: Move to ....
7492 * sysdeps/mips/fpu/fenv_private.h: ... here. Change
7493 multiple-include guard to [MIPS_FENV_PRIVATE_H]. Remove
7494 [__mips_hard_float] conditional. Include next <fenv_private.h>.
7495 * sysdeps/powerpc/fpu/fenv_private.h: Change multiple-include
7496 guard to [POWERPC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7497 * sysdeps/powerpc/fpu/math_private.h: Do not include
7498 <fenv_private.h>.
7499 * sysdeps/riscv/rvf/math_private.h: Move to ....
7500 * sysdeps/riscv/rvf/fenv_private.h: ... here. Change
7501 multiple-include guard to [RISCV_FENV_PRIVATE_H]. Include next
7502 <fenv_private.h>.
7503 * sysdeps/sparc/fpu/fenv_private.h: Change multiple-include guard
7504 to [SPARC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7505 * sysdeps/sparc/fpu/math_private.h: Remove.
7506 * sysdeps/i386/fpu/fenv_private.h: Move to ....
7507 * sysdeps/x86/fpu/fenv_private.h: ... here. Change
7508 multiple-include guard to [X86_FENV_PRIVATE_H]. Include next
7509 <fenv_private.h>.
7510 * sysdeps/x86_64/fpu/math_private.h: Do not include
7511 <sysdeps/i386/fpu/fenv_private.h>.
7512
7513 2018-08-28 Florian Weimer <fweimer@redhat.com>
7514
7515 [BZ #23578]
7516 * posix/tst-regcomp-truncated.c: New file.
7517 * posix/Makefile (tests): Add it.
7518 (tst-regcomp-truncated.out): Depend on generated locales.
7519
7520 2018-08-28 Florian Weimer <fweimer@redhat.com>
7521
7522 * support/test-container.c (main): Treat unshare failure with
7523 EPERM as an unsupported test.
7524
7525 2018-08-28 Florian Weimer <fweimer@redhat.com>
7526
7527 [BZ #23520]
7528 nscd: Fix use-after-free in addgetnetgrentX and its callers.
7529 * nscd/netgroupcache.c
7530 (addgetnetgrentX): Add tofreep parameter. Do not free
7531 heap-allocated buffer.
7532 (addinnetgrX): Free buffer allocated bt addgetnetgrentX.
7533 (addgetnetgrentX_ignore): New function.
7534 (addgetnetgrent): Call it.
7535 (readdgetnetgrent): Likewise.
7536
7537 2018-08-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7538
7539 * string/memmem.c: Use memcmp for first match.
7540
7541 2018-08-28 Rafal Luzynski <digitalfreak@lingonborough.com>
7542
7543 [BZ #17426]
7544 * localedata/locales/en_IN (d_fmt): Use "%d/%m/%y".
7545
7546 2018-08-27 DJ Delorie <dj@redhat.com>
7547
7548 * support/Makefile (others): Don't list programs explicitly as a
7549 dependency of "others".
7550
7551 2018-08-27 Joseph Myers <joseph@codesourcery.com>
7552
7553 * sysdeps/generic/math-tests-trap-force.h: New file.
7554 * sysdeps/generic/math-tests.h: Include <math-tests-trap-force.h>.
7555 (EXCEPTION_SET_FORCES_TRAP): Do not define here.
7556 * sysdeps/powerpc/math-tests.h: Remove file.
7557 * sysdeps/powerpc/fpu/math-tests-trap-force.h: New file.
7558
7559 2018-08-27 Martin Kuchta <martin.kuchta@netapp.com>
7560 Torvald Riegel <triegel@redhat.com>
7561
7562 [BZ #23538]
7563 * nptl/pthread_cond_common.c (__condvar_quiesce_and_switch_g1):
7564 Update r to include the set wake-request flag if waiters are
7565 remaining after spinning.
7566
7567 2018-08-27 Joseph Myers <joseph@codesourcery.com>
7568
7569 * sysdeps/gnu/netinet/udp.h (UDP_SEGMENT): New macro.
7570
7571 2018-08-25 Paul Eggert <eggert@cs.ucla.edu>
7572
7573 [BZ #23578]
7574 regex: fix uninitialized memory access
7575 I introduced this bug into gnulib in commit
7576 8335a4d6c7b4448cd0bcb6d0bebf1d456bcfdb17 dated 2006-04-10;
7577 eventually it was merged into glibc. The bug was found by
7578 project-repo <bugs@feusi.co> and reported here:
7579 https://lists.gnu.org/r/sed-devel/2018-08/msg00017.html
7580 Diagnosis and draft fix reported by Assaf Gordon here:
7581 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00071.html
7582 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00142.html
7583 * posix/regex_internal.c (build_wcs_upper_buffer):
7584 Fix bug when mbrtowc returns 0.
7585
7586 2018-08-24 Carlos O'Donell <carlos@redhat.com>
7587
7588 * po/be.po: Update translation.
7589
7590 2018-08-24 DJ Delorie <dj@delorie.com>
7591
7592 * support/Makefile (LDLIBS-links-dso-program): Add -lgcc and
7593 $(libunwind).
7594
7595 2018-08-24 Paul Pluzhnikov <ppluzhnikov@google.com>
7596
7597 [BZ #23400]
7598 * stdlib/test-bz22786.c (do_test): Fix undefined behavior, don't
7599 create temporary files in source tree.
7600
7601 2018-08-24 Joseph Myers <joseph@codesourcery.com>
7602
7603 * sysdeps/generic/math-tests-trap.h: New file.
7604 * sysdeps/generic/math-tests.h: Include <math-tests-trap.h>.
7605 (EXCEPTION_ENABLE_SUPPORTED): Do not define here.
7606 * sysdeps/aarch64/math-tests.h: Remove file.
7607 * sysdeps/arm/math-tests.h: Likewise.
7608 * sysdeps/riscv/math-tests.h: Likewise.
7609 * sysdeps/aarch64/math-tests-trap.h: New file.
7610 * sysdeps/arm/math-tests-trap.h: Likewise.
7611 * sysdeps/riscv/math-tests-trap.h: Likewise.
7612
7613 2018-08-24 Wilco Dijkstra <wdijkstr@arm.com>
7614
7615 * math/Makefile: Remove empty files k_sin(f).c, k_cos(f).c.
7616 Remove unused files e_rem_pio2(f).c, k_rem_pio2f.c.
7617 * sysdeps/i386/fpu/e_rem_pio2.c: Delete file.
7618 * sysdeps/ia64/fpu/e_rem_pio2.c: Likewise.
7619 * sysdeps/ia64/fpu/e_rem_pio2f.c: Likewise.
7620 * sysdeps/ia64/fpu/k_rem_pio2f.c: Likewise.
7621 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
7622 * sysdeps/ieee754/dbl-64/k_cos.c: Likewise.
7623 * sysdeps/ieee754/dbl-64/k_sin.c: Likewise.
7624 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
7625 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
7626 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
7627 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
7628 * sysdeps/m68k/m680x0/fpu/e_rem_pio2.c: Likewise
7629 * sysdeps/m68k/m680x0/fpu/e_rem_pio2f.c: Likewise
7630 * sysdeps/m68k/m680x0/fpu/k_rem_pio2f.c: Likewise
7631 * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
7632 * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
7633
7634 2018-08-23 Joseph Myers <joseph@codesourcery.com>
7635
7636 * sysdeps/generic/math-tests-exceptions.h: New file.
7637 * sysdeps/generic/math-tests.h: Include <math-tests-exceptions.h>.
7638 (EXCEPTION_TESTS_float): Do not define here.
7639 (EXCEPTION_TESTS_double): Likewise.
7640 (EXCEPTION_TESTS_long_double): Likewise.
7641 (EXCEPTION_TESTS_float128): Likewise.
7642 * sysdeps/arm/math-tests.h [__SOFTFP__] (EXCEPTION_TESTS_float):
7643 Likewise.
7644 [__SOFTFP__] (EXCEPTION_TESTS_double): Likewise.
7645 [__SOFTFP__] (EXCEPTION_TESTS_long_double): Likewise.
7646 * sysdeps/arm/nofpu/math-tests-exceptions.h: New file.
7647 * sysdeps/m68k/coldfire/math-tests.h: Remove file.
7648 * sysdeps/mips/math-tests.h: Likewise.
7649 * sysdeps/nios2/math-tests.h: Likewise.
7650 * sysdeps/riscv/math-tests.h [!__riscv_flen]
7651 (EXCEPTION_TESTS_float): Do not define here.
7652 [!__riscv_flen] (EXCEPTION_TESTS_double): Likewise.
7653 [!__riscv_flen] (EXCEPTION_TESTS_long_double): Likewise.
7654 * sysdeps/riscv/nofpu/math-tests-exceptions.h: New file.
7655
7656 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
7657
7658 * NEWS: Move optimized sinf entry to 2.29.
7659
7660 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
7661
7662 * sysdeps/ieee754/flt-32/s_tanf.c (__tanf): Use fast range reduction.
7663
7664 2018-08-22 DJ Delorie <dj@redhat.com>
7665
7666 * Makefile (testroot.pristine): New rules to initialize the
7667 test-in-container "testroot".
7668 * Makerules (all-testsuite): Add tests-container.
7669 * Rules (tests-expected): Add tests-container.
7670 (binaries-all-tests): Likewise.
7671 (tests-container): New, run these tests in the testroot container.
7672 * support/Makefile (others): Add *-container, support_paths.c,
7673 xmkdirp, and links-dso-program.
7674 * support/links-dso-program-c.c: New.
7675 * support/links-dso-program.cc: New.
7676 * support/test-container.c: New.
7677 * support/shell-container.c: New.
7678 * support/echo-container.c: New.
7679 * support/true-container.c: New.
7680 * support/xmkdirp.c: New.
7681 * support/xsymlink.c: New.
7682 * support/support_paths.c: New.
7683 * support/support.h: Add support paths prototypes.
7684 * support/xunistd.h: Add xmkdirp () and xsymlink ().
7685
7686 * nss/tst-nss-test3.c: Convert to test-in-container.
7687 * nss/tst-nss-test3.root/: New.
7688
7689 2018-08-22 Paul Eggert <eggert@cs.ucla.edu>
7690
7691 regex: port Gnulib code to z/OS POSIX environment
7692 Problem reported by Arnold Robbins in:
7693 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
7694 * posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
7695 Undef.
7696
7697 2018-08-22 Joseph Myers <joseph@codesourcery.com>
7698
7699 * math/test-double-vlen2.h: Don't include <math-tests-rounding.h>.
7700 (ROUNDING_TESTS_double): Remove.
7701 * math/test-double-vlen4.h: Don't include <math-tests-rounding.h>.
7702 (ROUNDING_TESTS_double): Remove.
7703 * math/test-double-vlen8.h: Don't include <math-tests-rounding.h>.
7704 (ROUNDING_TESTS_double): Remove.
7705 * math/test-float-vlen16.h: Don't include <math-tests-rounding.h>.
7706 (ROUNDING_TESTS_float): Remove.
7707 * math/test-float-vlen4.h: Don't include <math-tests-rounding.h>.
7708 (ROUNDING_TESTS_float): Remove.
7709 * math/test-float-vlen8.h: Don't include <math-tests-rounding.h>.
7710 (ROUNDING_TESTS_float): Remove.
7711 * math/libm-test-driver.c (IF_ROUND_INIT_FE_DOWNWARD): Check
7712 !TEST_MATHVEC here.
7713 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
7714 (IF_ROUND_INIT_FE_UPWARD): Likewise.
7715
7716 * sysdeps/generic/math-tests-rounding.h: New file.
7717 * sysdeps/generic/math-tests.h: Include <math-tests-rounding.h>.
7718 (ROUNDING_TESTS_float): Do not define here.
7719 (ROUNDING_TESTS_double): Likewise.
7720 (ROUNDING_TESTS_long_double): Likewise.
7721 (ROUNDING_TESTS_float128): Likewise.
7722 * math/test-double-vlen2.h: Include <math-tests-rounding.h>.
7723 (ROUNDING_TESTS_double): Undefine before defining.
7724 * math/test-double-vlen4.h: Include <math-tests-rounding.h>.
7725 (ROUNDING_TESTS_double): Undefine before defining.
7726 * math/test-double-vlen8.h: Include <math-tests-rounding.h>.
7727 (ROUNDING_TESTS_double): Undefine before defining.
7728 * math/test-float-vlen16.h: Include <math-tests-rounding.h>.
7729 (ROUNDING_TESTS_float): Undefine before defining.
7730 * math/test-float-vlen4.h: Include <math-tests-rounding.h>.
7731 (ROUNDING_TESTS_float): Undefine before defining.
7732 * math/test-float-vlen8.h: Include <math-tests-rounding.h>.
7733 (ROUNDING_TESTS_float): Undefine before defining.
7734 * sysdeps/arm/nofpu/math-tests-rounding.h: New file.
7735 * sysdeps/arm/math-tests.h [__SOFTFP__] (ROUNDING_TESTS_float): Do
7736 not define here.
7737 [__SOFTFP__] (ROUNDING_TESTS_double): Likewise.
7738 [__SOFTFP__] (ROUNDING_TESTS_long_double): Likewise.
7739 * sysdeps/riscv/nofpu/math-tests-rounding.h: New file.
7740 * sysdeps/riscv/math-tests.h [!__riscv_flen]
7741 (ROUNDING_TESTS_float): Do not define here.
7742 [!__riscv_flen] (ROUNDING_TESTS_double): Likewise.
7743 [!__risv_flen] (ROUNDING_TESTS_long_double): Likewise.
7744 * sysdeps/m68k/coldfire/math-tests.h [!__mcffpu__]
7745 (ROUNDING_TESTS_float): Likewise.
7746 [!__mcffpu__] (ROUNDING_TESTS_double): Likewise.
7747 [!__mcffpu__] (ROUNDING_TESTS_long_double): Likewise.
7748 * sysdeps/mips/math-tests.h [__mips_soft_float]
7749 (ROUNDING_TESTS_float): Likewise.
7750 [__mips_soft_float] (ROUNDING_TESTS_double): Likewise.
7751 [__mips_soft_float] (ROUNDING_TESTS_long_double): Likewise.
7752 * sysdeps/nios2/math-tests.h (ROUNDING_TESTS_float): Likewise.
7753 (ROUNDING_TESTS_double): Likewise.
7754 (ROUNDING_TESTS_long_double): Likewise.
7755
7756 2018-08-21 Tobias Klauser <tklauser@distanz.ch>
7757
7758 * sysdeps/unix/sysv/linux/bits/socket.h (PF_MAX): Set to 45.
7759 (PF_XDP): New macro.
7760 (AF_XDP): New macro.
7761 (SOL_XDP): New macro.
7762
7763 2018-08-21 Joseph Myers <joseph@codesourcery.com>
7764
7765 * sysdeps/gnu/netinet/tcp.h (TCP_ZEROCOPY_RECEIVE): New macro.
7766 (TCP_INQ): Likewise.
7767 (TCP_CM_INQ): Likewise.
7768 (TCP_REPAIR_ON): Likewise.
7769 (TCP_REPAIR_OFF): Likewise.
7770 (TCP_REPAIR_OFF_NO_WP): Likewise.
7771 (struct tcp_zerocopy_receive): New type.
7772
7773 2018-08-21 Florian Weimer <fweimer@redhat.com>
7774
7775 * support/support.h (support_descriptor_supports_holes): Declare.
7776 * support/Makefile (libsupport-routines): Add
7777 support_descriptor_supports_holes.
7778 * support/support_descriptor_supports_holes.c: New file.
7779 * io/tst-copy_file_range.c: Call support_descriptor_supports_holes
7780 and stop testing if holes are not supported.
7781 * io/test-lfs.c (do_prepare): Likewise.
7782 * sysdeps/unix/sysv/linux/tst-fallocate-common.c (do_prepare):
7783 Likewise.
7784 * timezone/tst-tzset.c (create_tz_file): Likewise.
7785 * misc/tst-preadvwritev-common.c (temp_fd_supports_holes) New
7786 variable.
7787 (do_prepare): Set it.
7788 * misc/tst-preadvwritev64.c (do_test): Use temp_fd_supports_holes.
7789
7790 2018-08-21 Florian Weimer <fweimer@redhat.com>
7791
7792 [BZ #17248]
7793 * Makeconfig (+cflags): Do not sort (and deduplicate).
7794
7795 2018-08-21 Florian Weimer <fweimer@redhat.com>
7796
7797 * debug/readlink_chk.c (__readlink_chk): Always call __readlink.
7798 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove file.
7799
7800 2018-08-20 Florian Weimer <fweimer@redhat.com>
7801
7802 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove
7803 HAVE_INLINED_SYSCALLS conditionals. Use INLINE_SYSCALL_CALL.
7804
7805 2018-08-20 Joseph Myers <joseph@codesourcery.com>
7806
7807 * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
7808 signalfd_siginfo): Add ssi_addr_lsb, ssi_syscall, ssi_call_addr
7809 and ssi_arch members.
7810
7811 * elf/elf.c (NT_VMCOREDD): New macro.
7812 (AT_MINSIGSTKSZ): Likewise.
7813
7814 2018-08-20 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7815
7816 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
7817 (libm-sysdep_routines): Remove s_sinf-ppc64, s_sinf-power8,
7818 s_cosf-ppc64 and s_cosf-power8.
7819 * sysdeps/powerpc/fpu/s_cosf.c: Remove file.
7820 * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
7821 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
7822 * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
7823 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
7824 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
7825 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Likewise.
7826 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
7827 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
7828 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Likewise.
7829 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Likewise.
7830 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Likewise.
7831
7832 2018-08-17 Florian Weimer <fweimer@redhat.com>
7833
7834 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
7835
7836 2018-08-17 Istvan Kurucsai <pistukem@gmail.com>
7837
7838 * malloc/malloc.c (_int_malloc): Additional binning code checks.
7839
7840 2018-08-16 Florian Weimer <fweimer@redhat.com>
7841
7842 * configure.ac: Add --with-nonshared-cflags option.
7843 * config.make.in (extra-nonshared-cflags): Set variable.
7844 * Makeconfig (CFLAGS-.oS): Use it.
7845 * manual/install.texi (Configuring and compiling): Document
7846 --with-nonshared-cflags.
7847 * configure: Regenerate.
7848 * INSTALL: Likewise.
7849
7850 2018-08-16 Florian Weimer <fweimer@redhat.com>
7851
7852 * Makeconfig (ASFLAGS): Always append required assembler flags.
7853
7854 2018-08-16 Moritz Eckert <m.eckert@cs.ucsb.edu>
7855
7856 * malloc/malloc.c (_int_free): Check for corrupt prev_size vs size.
7857 (malloc_consolidate): Likewise.
7858
7859 2018-08-16 Pochang Chen <johnchen902@gmail.com>
7860
7861 * malloc/malloc.c (_int_malloc.c): Verify size of top chunk.
7862
7863 2018-08-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
7864
7865 * benchtests/bench-strlen.c (do_test): Allocate buffers before
7866 every strlen call.
7867
7868 * benchtests/bench-strlen.c: Print performance numbers in json.
7869
7870 2018-08-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7871
7872 * sysdeps/powerpc/powerpc64/multiarch/Makefile
7873 (sysdep_routines): Build strcmp-power9 and strncmp-power9
7874 only for little endian.
7875 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
7876 (strncmp): Move __strncmp_power9 inside ifdef __LITTLE_ENDIAN__.
7877 (STRCMP): Move __strcmp_power9 inside ifdef __LITTLE_ENDIAN__.
7878 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S:
7879 Add check for little endian.
7880 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c
7881 (__strcmp_power9): Add check for little endian.
7882 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S:
7883 Add check for little endian.
7884 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c
7885 (__strncmp_power9): Add check for little endian.
7886 * sysdeps/powerpc/powerpc64/power9/strcmp.S: Removed ifdef
7887 __LITTLE_ENDIAN__ and moved to sysdeps/powerpc/powerpc64/le/power9.
7888 * sysdeps/powerpc/powerpc64/power9/strncmp.S: Likewise.
7889 * sysdeps/powerpc/powerpc64/le/power9/strcmp.S: New file.
7890 * sysdeps/powerpc/powerpc64/le/power9/strncmp.S: Likewise.
7891
7892 2018-08-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
7893
7894 * sysdeps/aarch64/strlen.S (__strlen): Rename to STRLEN.
7895 [!STRLEN](STRLEN): Set to __strlen.
7896 * sysdeps/aarch64/multiarch/strlen.c: New file.
7897 * sysdeps/aarch64/multiarch/strlen_generic.S: Likewise.
7898 * sysdeps/aarch64/multiarch/strlen_asimd.S: Likewise.
7899 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
7900 (__libc_ifunc_impl_list): Add strlen.
7901 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
7902 strlen_generic and strlen_asimd.
7903
7904 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
7905
7906 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Use __sinf/__cosf.
7907 * sysdeps/ieee754/flt-32/k_cosf.c (__kernel_cosf): Remove all code.
7908 * sysdeps/ieee754/flt-32/k_sinf.c (__kernel_sinf): Likewise.
7909
7910 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
7911
7912 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate to fix spaces.
7913
7914 2018-08-14 Florian Weimer <fweimer@redhat.com>
7915
7916 [BZ #23519]
7917 * include/stdio.h (__vfxprintf): Declare.
7918 * stdio-common/fxprintf.c (__vfxprintf): New function.
7919 (__fxprintf): Call it.
7920 * misc/err.c (convert_and_print): Remove function.
7921 (vwarnx, vwarn): Call __fxprintf and __vfxprintf.
7922 * misc/error.c [_LIBC] (error_tail): Call __vfxprintf.
7923 * misc/Makefile (tests): Add tst-warn-wide.
7924 * misc/tst-warn-wide.c: New file.
7925
7926 2018-08-14 Wilco Dijkstra <wdijkstr@arm.com>
7927 Szabolcs Nagy <szabolcs.nagy@arm.com>
7928
7929 * NEWS: Mention sinf, cosf, sincosf.
7930 * sysdeps/aarch64/libm-test-ulps: Update ULP for sinf, cosf, sincosf.
7931 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sinf and cosf.
7932 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Add definitions of
7933 constants rather than including generic sincosf.h.
7934 * sysdeps/x86_64/fpu/s_sincosf_data.c: Remove.
7935 * sysdeps/ieee754/flt-32/s_cosf.c (cosf): Rewrite.
7936 * sysdeps/ieee754/flt-32/s_sincosf.h (reduced_sin): Remove.
7937 (reduced_cos): Remove.
7938 (sinf_poly): New function.
7939 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Rewrite.
7940
7941 2018-08-14 Florian Weimer <fweimer@redhat.com>
7942
7943 [BZ #23521]
7944 [BZ #23522]
7945 * nss/nss_files/files-alias.c (get_next_alias): During :include:
7946 processing, bail out if no room, and close the stream before
7947 returning ERANGE.
7948 * nss/Makefile (tests): Add tst-nss-files-alias-leak.
7949 (tst-nss-files-alias-leak): Link with libdl.
7950 (tst-nss-files-alias-leak.out): Depend on nss_files.
7951
7952 * nss/tst-nss-files-alias-leak.c: New file.
7953
7954 2018-08-14 Florian Weimer <fweimer@redhat.com>
7955
7956 * nscd/nscd_conf.c (nscd_parse_file): Deallocate old storage for
7957 server_user, stat_user.
7958
7959 2018-08-13 Joseph Myers <joseph@codesourcery.com>
7960
7961 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
7962 version to 4.18.
7963 (io_pgetevents): New syscall.
7964 (rseq): Likewise.
7965
7966 * manual/install.texi (Configuring and compiling): Do not list
7967 tools used for testing pretty printers here.
7968 (Tools for Compilation): List Python, PExpect and GDB here.
7969 Update descriptions of uses of Perl and Python.
7970 * INSTALL: Regenerate.
7971
7972 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
7973 version to 4.18.
7974
7975 2018-08-13 Florian Weimer <fweimer@redhat.com>
7976
7977 * misc/error.c (error): Add missing va_end call.
7978 (error_at_line): Likewise.
7979
7980 2018-08-13 Florian Weimer <fweimer@redhat.com>
7981
7982 * stdlib/mbstowcs.c (mbstowcs): Remove outdated comment.
7983
7984 2018-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
7985
7986 * benchtests/scripts/benchout.schema.json (properties): Add
7987 new properties.
7988
7989 * benchtests/bench-skeleton.c (main): Add duration and
7990 iterations attributes.
7991
7992 2018-08-10 Paul Eggert <eggert@cs.ucla.edu>
7993
7994 regex: Gnulib unibyte RRI uses bytes not chars
7995 Adjust the non-glibc code to agree with what Gawk needs for
7996 rational range interpretation (RRI) for regular expression ranges.
7997 In unibyte locales, Gawk wants ranges to use the underlying byte
7998 rather than the character code point. This change does not affect
7999 glibc proper.
8000 * posix/regcomp.c (parse_byte) [!LIBC && RE_ENABLE_I18N]:
8001 In unibyte locales, use the byte value rather than
8002 running it through btowc.
8003
8004 2018-08-10 Joseph Myers <joseph@codesourcery.com>
8005
8006 * sysdeps/generic/math-tests-snan.h: New file.
8007 * sysdeps/generic/math-tests.h: Include <math-tests-snan.h>.
8008 (SNAN_TESTS_float): Do not define here.
8009 (SNAN_TESTS_double): Likewise.
8010 (SNAN_TESTS_long_double): Likewise.
8011 (SNAN_TESTS_float128): Likewise.
8012 * sysdeps/i386/fpu/math-tests-snan.h: New file.
8013 * sysdeps/i386/fpu/math-tests.h: Remove file.
8014 * sysdeps/ia64/math-tests-snan.h: New file.
8015 * sysdeps/ia64/math-tests.h: Remove file.
8016 * sysdeps/x86/math-tests.h: Likewise.
8017 * sysdeps/x86_64/fpu/math-tests-snan.h: New file.
8018
8019 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
8020 Szabolcs Nagy <szabolcs.nagy@arm.com>
8021
8022 * math/Makefile: Add s_sincosf_data.c.
8023 * sysdeps/ia64/fpu/s_sincosf_data.c: New file.
8024 * sysdeps/ieee754/flt-32/s_sincosf.h (abstop12): Add new function.
8025 (sincosf_poly): Likewise.
8026 (reduce_small): Likewise.
8027 (reduce_large): Likewise.
8028 * sysdeps/ieee754/flt-32/s_sincosf.c (sincosf): Rewrite.
8029 * sysdeps/ieee754/flt-32/s_sincosf_data.c: New file with sincosf data.
8030 * sysdeps/m68k/m680x0/fpu/s_sincosf_data.c: New file.
8031 * sysdeps/x86_64/fpu/s_sincosf_data.c: New file.
8032
8033 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
8034 Szabolcs Nagy <szabolcs.nagy@arm.com>
8035
8036 * sysdeps/aarch64/fpu/math_private.h (roundtoint): Use round.
8037 (converttoint): Use lround.
8038 * sysdeps/ieee754/flt-32/math_config.h (roundtoint): Declare and
8039 document the semantics when TOINT_INTRINSICS is set.
8040 (converttoint): Likewise.
8041 (TOINT_RINT): Remove.
8042 (TOINT_SHIFT): Remove.
8043 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Remove the TOINT_RINT code
8044 path.
8045
8046 2018-08-10 Florian Weimer <fweimer@redhat.com>
8047
8048 [BZ #23497]
8049 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): New
8050 function.
8051 (__old_getdents64): Use getdents64. Convert entries without
8052 moving them.
8053 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c: New file.
8054 * sysdeps/unix/sysv/linux/Makefile (tests-internal): Add
8055 tst-readdir64-compat.
8056
8057 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8058
8059 * sysdeps/s390/s390-32/s390-mcount.S (_mcount):
8060 Fix unwind.
8061
8062 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8063
8064 * sysdeps/s390/s390-64/Versions (__fentry__): Add.
8065 * sysdeps/s390/s390-64/s390x-mcount.S: Move the common
8066 code to s390x-mcount.h and #include it.
8067 * sysdeps/s390/s390-64/s390x-mcount.h: New file.
8068 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist
8069 (__fentry__): Add.
8070
8071 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8072
8073 * stdlib/Versions: Remove __fentry__.
8074 * sysdeps/i386/Versions: Add __fentry__.
8075 * sysdeps/x86_64/Versions: Add __fentry__.
8076
8077 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8078
8079 * sysdeps/s390/Makefile: Register the new tests.
8080 * sysdeps/s390/tst-dl-runtime-mod.S: New file.
8081 * sysdeps/s390/tst-dl-runtime-profile-audit.c: New file.
8082 * sysdeps/s390/tst-dl-runtime-profile-noaudit.c: New file.
8083 * sysdeps/s390/tst-dl-runtime-resolve-audit.c: New file.
8084 * sysdeps/s390/tst-dl-runtime-resolve-noaudit.c: New file.
8085 * sysdeps/s390/tst-dl-runtime.c: New file.
8086
8087 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8088
8089 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
8090 Do not clobber R0.
8091
8092 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8093
8094 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
8095 Do not clobber R0.
8096
8097 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8098
8099 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
8100 Do not clobber R0.
8101
8102 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8103
8104 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
8105 Do not clobber R0.
8106
8107 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8108
8109 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
8110 Use symbolic offsets for stack variables.
8111
8112 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8113
8114 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
8115 Use symbolic offsets for stack variables.
8116
8117 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8118
8119 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
8120 Use symbolic offsets for stack variables.
8121
8122 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8123
8124 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
8125 Use symbolic offsets for stack variables.
8126
8127 2018-08-09 Joseph Myers <joseph@codesourcery.com>
8128
8129 * math/gen-libm-test.py: New file.
8130 * math/gen-libm-test.pl: Remove.
8131 * math/Makefile [$(PERL) != no]: Change condition to [PYTHON].
8132 ($(objpfx)libm-test-ulps.h): Use gen-libm-test.py instead of
8133 gen-libm-test.pl.
8134 ($(libm-test-c-noauto-obj)): Likewise.
8135 ($(libm-test-c-auto-obj)): Likewise.
8136 ($(libm-test-c-narrow-obj)): Likewise.
8137 (regen-ulps): Likewise.
8138 * math/README.libm-test: Update references to gen-libm-test.pl.
8139 * math/libm-test-driver.c (struct test_fj_f_data): Update comment
8140 referencing gen-libm-test.pl.
8141 * math/libm-test-nexttoward.inc (nexttoward_test_data): Likewise.
8142 * math/libm-test-support.c: Likewise.
8143 * math/libm-test-support.h: Likewise.
8144 * sysdeps/generic/libm-test-ulps: Likewise.
8145
8146 2018-08-08 Siddhesh Poyarekar <siddhesh@sourceware.org>
8147
8148 * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE):
8149 Fix value.
8150
8151 2018-08-08 Joseph Myers <joseph@codesourcery.com>
8152
8153 * math/libm-test-nextdown.inc (do_test): Move comment to ....
8154 * math/libm-test-nexttoward.inc (nexttoward_test_data): ... here.
8155
8156 2018-08-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
8157
8158 * htl/Versions (__pthread_getspecific, __pthread_setspecific): Add
8159 symbols.
8160 * sysdeps/htl/pthreadP.h [IS_IN (libpthread)] (__pthread_getspecific,
8161 __pthread_setspecific): Add hidden proto.
8162 * sysdeps/htl/pt-getspecific.c (__pthread_getspecific): Add hidden def.
8163 * sysdeps/htl/pt-setspecific.c (__pthread_setspecific): Add hidden def.
8164
8165 2018-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
8166
8167 * benchtests/bench-string.h (buf1_size, buf2_size): New
8168 variables.
8169 (init_sizes): New function.
8170 (test_init): Use it.
8171 (alloc_buf, exit_error): New functions.
8172 (alloc_bufs): Use ALLOC_BUF.
8173 (realloc_bufs): Remove.
8174 * benchtests/bench-memcmp.c (do_test): Adjust.
8175 * benchtests/bench-memset-large.c (do_test): Likewise.
8176 * benchtests/bench-memset-walk.c (do_test): Likewise.
8177 * benchtests/bench-memset.c (do_test): Likewise.
8178 * benchtests/bench-strncmp.c (do_test): Likewise.
8179
8180 2018-08-06 Andreas Schwab <schwab@suse.de>
8181
8182 * sysdeps/riscv/nptl/tls.h (DB_THREAD_SELF): Use REGISTER instead
8183 of CONST_THREAD_AREA.
8184
8185 2018-08-06 H.J. Lu <hongjiu.lu@intel.com>
8186
8187 * sysdeps/x86/cpu-features.h (STATE_SAVE_OFFSET): Removed.
8188 (STATE_SAVE_MASK): Likewise.
8189 Don't check __ASSEMBLER__ to include <cpu-features-offsets.h>.
8190 * sysdeps/x86/sysdep.h (STATE_SAVE_OFFSET): New.
8191 (STATE_SAVE_MASK): Likewise.
8192 * sysdeps/x86_64/dl-trampoline.S: Include <cpu-features-offsets.h>
8193 instead of <cpu-features.h>.
8194
8195 2018-08-03 DJ Delorie <dj@redhat.com>
8196
8197 * sysdeps/riscv/rvf/math_private.h (libc_feholdexcept_setround_riscv):
8198 Move libc_fesetround_riscv after libc_feholdexcept_riscv.
8199
8200 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
8201
8202 2018-08-03 Joseph Myers <joseph@codesourcery.com>
8203
8204 * math/libm-test-ilogb.inc (ilogb_test_data): Use ',' not ';'
8205 after TEST_* calls.
8206 * math/libm-test-llogb.inc (llogb_test_data): Likewise.
8207 * math/libm-test-logb.inc (logb_test_data): Likewise.
8208
8209 2018-08-03 Wilco Dijkstra <wdijkstr@arm.com>
8210
8211 * string/strcasestr.c (STRCASESTR): Simplify and speedup first match.
8212 * string/strstr.c (AVAILABLE): Likewise.
8213
8214 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
8215
8216 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Don't include
8217 <init-arch.h>.
8218 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: Likewise.
8219 * sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S: Likewise.
8220 * sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S: Likewise.
8221
8222 2018-08-03 Carlos O'Donell <carlos@redhat.com>
8223
8224 * po/be.po: Update translation.
8225
8226 * po/be.po: Update translation.
8227
8228 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
8229
8230 * sysdeps/x86/cpu-features-offsets.sym
8231 (rtld_global_ro_offsetof): Removed.
8232 (CPU_FEATURES_SIZE): Likewise.
8233 (CPUID_OFFSET): Likewise.
8234 (CPUID_SIZE): Likewise.
8235 (CPUID_EAX_OFFSET): Likewise.
8236 (CPUID_EBX_OFFSET): Likewise.
8237 (CPUID_ECX_OFFSET): Likewise.
8238 (CPUID_EDX_OFFSET): Likewise.
8239 (FAMILY_OFFSET): Likewise.
8240 (MODEL_OFFSET): Likewise.
8241 (FEATURE_OFFSET): Likewise.
8242 (FEATURE_SIZ): Likewise.
8243 (COMMON_CPUID_INDEX_1): Likewise.
8244 (COMMON_CPUID_INDEX_7): Likewise.
8245 (FEATURE_INDEX_1): Likewise.
8246 (RTLD_GLOBAL_RO_DL_X86_CPU_FEATURES_OFFSET): Updated.
8247
8248 2018-08-02 Carlos O'Donell <carlos@redhat.com>
8249
8250 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Remove.
8251 (INSTALL-SUPPORTED-LOCALE-ARCHIVE): Define.
8252 (INSTALL-SUPPORTED-LOCALE-FILES): Define.
8253 (install-locales): Depend on install-locale-archive.
8254 (install-locale-archive): Define.
8255 (install-locale-files): Define.
8256 (build-one-locale): Define macro.
8257 * manual/install.texi (Running make install): Document.
8258 * manual/INSTALL: Regenerate.
8259
8260 2018-08-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
8261
8262 * benchtests/scripts/compare_strings.py: Import traceback.
8263 (parse_file): Pretty-print error.
8264
8265 * NEWS: Mention the change.
8266 * elf/dl-tunables.list: Rename tune namespace to cpu.
8267 * sysdeps/powerpc/dl-tunables.list: Likewise.
8268 * sysdeps/x86/dl-tunables.list: Likewise.
8269 * sysdeps/aarch64/dl-tunables.list: Rename tune.cpu to
8270 cpu.name.
8271 * elf/dl-hwcaps.c (_dl_important_hwcaps): Adjust.
8272 * elf/dl-hwcaps.h (GET_HWCAP_MASK): Likewise.
8273 * manual/README.tunables: Likewise.
8274 * manual/tunables.texi: Likewise.
8275 * sysdeps/powerpc/cpu-features.c: Likewise.
8276 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
8277 (init_cpu_features): Likewise.
8278 * sysdeps/x86/cpu-features.c: Likewise.
8279 * sysdeps/x86/cpu-features.h: Likewise.
8280 * sysdeps/x86/cpu-tunables.c: Likewise.
8281 * sysdeps/x86_64/Makefile: Likewise.
8282 * sysdeps/x86/dl-cet.c: Likewise.
8283
8284 2018-08-02 Joseph Myers <joseph@codesourcery.com>
8285
8286 [BZ #23479]
8287 * sysdeps/mips/bits/fenv.h (FE_INEXACT): Define only if
8288 [__mips_hard_float].
8289 (FE_UNDERFLOW): Likewise.
8290 (FE_OVERFLOW): Likewise.
8291 (FE_DIVBYZERO): Likewise.
8292 (FE_INVALID): Likewise.
8293 (FE_ALL_EXCEPT): Define to 0 if [!__mips_hard_float].
8294 (FE_TOWARDZERO): Define only if [__mips_hard_float].
8295 (FE_UPWARD): Likewise.
8296 (FE_DOWNWARD): Likewise.
8297 (__FE_UNDEFINED): Define if [!__mips_hard_float]
8298 (FE_NOMASK_ENV): Define only if [__mips_hard_float].
8299 * sysdeps/mips/mips64/sfp-machine.h (_FP_DECL_EX): Define only if
8300 [__mips_hard_float].
8301 (FP_ROUNDMODE): Likewise.
8302 (FP_RND_NEAREST): Likewise.
8303 (FP_RND_ZERO): Likewise.
8304 (FP_RND_PINF): Likewise.
8305 (FP_RND_MINF): Likewise.
8306 (FP_EX_INVALID): Likewise.
8307 (FP_EX_OVERFLOW): Likewise.
8308 (FP_EX_UNDERFLOW): Likewise.
8309 (FP_EX_DIVZERO): Likewise.
8310 (FP_EX_INEXACT): Likewise.
8311 (FP_INIT_ROUNDMODE): Likewise.
8312 * sysdeps/mips/nofpu/fesetenv.c: New file.
8313 * sysdeps/mips/nofpu/feupdateenv.c: Likewise.
8314
8315 2018-08-01 Joseph Myers <joseph@codesourcery.com>
8316
8317 * math/test-misc.c (do_test) [LDBL_MANT_DIG > DBL_MANT_DIG]: Make
8318 code using FE_UNDERFLOW conditional on [FE_UNDERFLOW], code using
8319 FE_OVERFLOW conditional on [FE_OVERFLOW] and code using FE_UPWARD
8320 conditional on [FE_UPWARD].
8321
8322 2018-08-01 Paul Eggert <eggert@cs.ucla.edu>
8323
8324 regex: fix memory leak in Gnulib
8325 Problem and fix reported by Assaf Gordon in:
8326 https://lists.gnu.org/r/bug-gnulib/2018-07/txtqLKNwBdefE.txt
8327 * posix/regcomp.c (free_charset) [!_LIBC]: Free range_starts and
8328 range_ends members too, as they are defined in 'struct
8329 re_charset_t' even if not _LIBC. This affects only Gnulib.
8330
8331 2018-08-01 H.J. Lu <hongjiu.lu@intel.com>
8332
8333 * sysdeps/x86/cpu-features.c (get_common_indeces): Renamed to
8334 ...
8335 (get_common_indices): This.
8336 (init_cpu_features): Updated.
8337
8338 2018-08-01 Joseph Myers <joseph@codesourcery.com>
8339
8340 * sysdeps/generic/math-tests-snan-payload.h: New file.
8341 * sysdeps/hppa/math-tests-snan-payload.h: Likewise.
8342 * sysdeps/mips/math-tests-snan-payload.h: Likewise.
8343 * sysdeps/riscv/math-tests-snan-payload.h: Likewise.
8344 * sysdeps/generic/math-tests.h: Include
8345 <math-tests-snan-payload.h>.
8346 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
8347 * sysdeps/hppa/math-tests.h: Remove file.
8348 * sysdeps/mips/math-tests.h [!__mips_nan2008]
8349 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
8350 * sysdeps/riscv/math-tests.h (SNAN_TESTS_PRESERVE_PAYLOAD):
8351 Likewise.
8352
8353 * sysdeps/generic/math-tests-snan-cast.h: New file.
8354 * sysdeps/powerpc/math-tests-snan-cast.h: Likewise.
8355 * sysdeps/generic/math-tests.h: Include <math-tests-snan-cast.h>.
8356 (SNAN_TESTS_TYPE_CAST): Do not define macro here.
8357 * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Likewise.
8358
8359 2018-08-01 Carlos O'Donel <carlos@redhat.com>
8360
8361 * version.h (RELEASE): Set to "development".
8362 (VERSION): Set to "2.28.9000".
8363 * NEWS (2.29): New section.
8364
8365 * version.h (RELEASE): Set to "stable".
8366 (VERSION): Set to "2.28".
8367 * include/features.h (__GLIBC_MINOR__): Set to 2.28.
8368 * NEWS: Add the list of bugs fixed in 2.28.
8369
8370 * po/ca.po: Update to latest version.
8371 * po/cs.po: Likewise
8372 * po/da.po: Likewise
8373 * po/el.po: Likewise
8374 * po/eo.po: Likewise
8375 * po/es.po: Likewise
8376 * po/fi.po: Likewise
8377 * po/fr.po: Likewise
8378 * po/gl.po: Likewise
8379 * po/hu.po: Likewise
8380 * po/ia.po: Likewise
8381 * po/id.po: Likewise
8382 * po/it.po: Likewise
8383 * po/ja.po: Likewise
8384 * po/ko.po: Likewise
8385 * po/lt.po: Likewise
8386 * po/nb.po: Likewise
8387 * po/nl.po: Likewise
8388 * po/pt_BR.po: Likewise
8389 * po/ru.po: Likewise
8390 * po/rw.po: Likewise
8391 * po/sk.po: Likewise
8392 * po/sl.po: Likewise
8393 * po/tr.po: Likewise
8394 * po/zh_CN.po: Likewise
8395 * po/zh_TW.po: Likewise
8396
8397 2018-07-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
8398
8399 * sysdeps/mach/hurd/i386/init-first.c (init1): Move ELF hdr and TLS
8400 initialization...
8401 (init): ... before initializing libpthread.
8402
8403 * mach/mach.h (__mach_setup_tls, mach_setup_tls): Add prototypes.
8404 * mach/setup-thread.c (__mach_setup_thread): Move TLS setup to...
8405 (__mach_setup_tls): ... new function.
8406 (mach_setup_tls): New alias.
8407 * hurd/hurdsig.c (_hurdsig_init): Call __mach_setup_tls after
8408 __mach_setup_thread.
8409 * sysdeps/mach/hurd/profil.c (update_waiter): Likewise.
8410 * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Likewise.
8411 * mach/Versions [libc] (mach_setup_tls): Add symbol.
8412 * sysdeps/mach/hurd/i386/libc.abilist (mach_setup_tls): Likewise.
8413
8414 2018-07-31 Carlos O'Donell <carlos@redhat.com>
8415
8416 * manual/install.texi: Update versions.
8417 * INSTALL: Regenerate.
8418
8419 * manual/contrib.texi (Contributors): Update contributions.
8420
8421 2018-07-31 Carlos O'Donell <carlos@redhat.com>
8422
8423 * po/be.po: Update translations.
8424
8425 2018-07-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8426
8427 * sysdeps/sh/libm-test-ulps: Update.
8428
8429 2018-07-30 Carlos O'Donell <carlos@redhat.com>
8430
8431 * po/bg.po: Update translations.
8432 * po/de.po: Likewise.
8433 * po/hr.po: Likewise.
8434 * po/pt_BR.po: Likewise.
8435 * po/sv.po: Likewise.
8436 * po/vi.po: Likewise.
8437
8438 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
8439
8440 [BZ #23467]
8441 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
8442 tst-cet-property-1 and tst-cet-property-2 if CET is enabled.
8443 (CFLAGS-tst-cet-property-1.o): New.
8444 (ASFLAGS-tst-cet-property-dep-2.o): Likewise.
8445 ($(objpfx)tst-cet-property-2): Likewise.
8446 ($(objpfx)tst-cet-property-2.out): Likewise.
8447 * sysdeps/unix/sysv/linux/x86/tst-cet-property-1.c: New file.
8448 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c: Likewise.
8449 * sysdeps/unix/sysv/linux/x86/tst-cet-property-dep-2.S: Likewise.
8450 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Parse
8451 each property item until GNU_PROPERTY_X86_FEATURE_1_AND is found.
8452
8453 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
8454
8455 [BZ #23458]
8456 * sysdeps/x86/Makefile (tests): Add tst-get-cpu-features-static.
8457
8458 2018-07-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
8459
8460 * sysdeps/mach/hurd/dl-unistd.h (__access, __brk, __lseek, __read,
8461 __sbrk): Do not set attribute_hidden.
8462 * sysdeps/mach/hurd/not-errno.h: New file.
8463 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
8464 * sysdeps/mach/hurd/i386/localplt.data: Update accordingly.
8465
8466 2018-07-27 Carlos O'Donell <carlos@redhat.com>
8467
8468 * po/uk.po: Update translations.
8469 * po/cs.po: Likewise.
8470 * po/pl.po: Likewise.
8471
8472 2018-07-27 H.J. Lu <hongjiu.lu@intel.com>
8473
8474 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Don't
8475 parse beyond the note end.
8476
8477 2018-07-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8478
8479 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: Return unsupported if
8480 kernel does not support OFD locks.
8481 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Likewise.
8482
8483 2018-07-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
8484
8485 * sysdeps/mach/hurd/Versions (libc): Make __access and
8486 __access_noerrno external so they can override the ld symbols.
8487 (ld): Make __access, __read, __sbrk, __strtoul_internal, __write,
8488 __writev, __open64, __access_noerrno extern so they can be overrided.
8489 * sysdeps/mach/hurd/i386/libc.abilist: Update accordingly.
8490 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
8491
8492 2018-07-26 Carlos O'Donell <carlos@redhat.com>
8493
8494 * po/libc.pot: Regenerate.
8495
8496 2018-07-26 Joseph Myers <joseph@codesourcery.com>
8497
8498 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
8499
8500 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
8501
8502 [BZ #23459]
8503 * sysdeps/x86/cpu-features.c (get_extended_indices): New
8504 function.
8505 (init_cpu_features): Call get_extended_indices for both Intel
8506 and AMD CPUs.
8507 * sysdeps/x86/cpu-features.h (COMMON_CPUID_INDEX_80000001):
8508 Remove "for AMD" comment.
8509
8510 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
8511
8512 [BZ # 23456]
8513 * sysdeps/x86/cpu-features.h (index_cpu_LZCNT): Set to
8514 COMMON_CPUID_INDEX_80000001.
8515
8516 2018-07-26 Stefan Liebler <stli@linux.ibm.com>
8517
8518 * string/tst-xbzero-opt.c (use_test_buffer): New function.
8519 (prepare_test_buffer): Call use_test_buffer as compiler barrier.
8520
8521 2018-07-26 Florian Weimer <fweimer@redhat.com>
8522
8523 * htl/lockfile.c (flockfile, funlockfile, ftrylockfile): Use weak
8524 aliases for symbols not in the implementation namespace.
8525
8526 2018-07-25 Carlos O'Donell <carlos@redhat.com>
8527
8528 [BZ #23393]
8529 * localedata/locales/iso14651_t1_common: Deinterlace uppercase and
8530 lowercase in LATIN script.
8531 * localedata/Makefile (test-input): Add en_US.UTF-8.
8532 * localedata/en_US.UTF-8.in: New file.
8533 * posix/tst-fnmatch.input: Add comments and new tests for en_US.UTF-8,
8534 and restore old tests.
8535 * posix/tst-regexloc.c (do_test): Add back range expression test.
8536
8537 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8538
8539 * sysdeps/unix/sysv/linux/ia64/tst-setcontext4.c: New file.
8540
8541 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8542
8543 * nptl/threads.h: Move to ...
8544 * sysdeps/nptl/threads.h: ... here.
8545 * sysdeps/hurd/stdc-predef.h: New file.
8546
8547 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8548
8549 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
8550 tst-cet-setcontext-1 if CET is enabled.
8551 (CFLAGS-tst-cet-setcontext-1.c): Add -mshstk.
8552 * sysdeps/unix/sysv/linux/x86/tst-cet-setcontext-1.c: New file.
8553
8554 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8555
8556 * include/threads.h: Move to ...
8557 * sysdeps/nptl/threads.h: ... here.
8558 * sysdeps/htl/threads.h: New file.
8559 * conform/Makefile (linknamespace-libs-ISO11): Use
8560 static-thread-library instead of linking libpthread.
8561 (linknamespace-libs-XPG4): Revert wrong libcrypt.a addition.
8562
8563 2018-07-25 Florian Weimer <fweimer@redhat.com>
8564
8565 * nptl/tst-mtx-timedlock.c (do_test): Implement carry from
8566 nanoseconds into seconds.
8567 * nptl/tst-cnd-basic.c (signal_parent): Lock and unlock mutex.
8568 (do_test): Likewise.
8569 * nptl/tst-cnd-timedwait.c (signal_parent): Likewise.
8570 (do_test): Likewise. Avoid nanosecond overflow and spurious
8571 timeouts due to system load.
8572 * nptl/tst-cnd-broadcast.c (waiting_threads): New variable.
8573 (child_wait): Increment it.
8574 (do_test): Wait as long as necessary until all expected threads
8575 have arrived.
8576
8577 2018-07-25 Vedvyas Shanbhogue <vedvyas.shanbhogue@intel.com>
8578 H.J. Lu <hongjiu.lu@intel.com>
8579
8580 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Add
8581 __ssp.
8582 * sysdeps/unix/sysv/linux/x86_64/__start_context.S: Include
8583 <asm/prctl.h> and "ucontext_i.h" when shadow stack is enabled.
8584 (__push___start_context): New.
8585 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Include
8586 <asm/prctl.h>.
8587 (__getcontext): Record the current shadow stack base. Save the
8588 caller's shadow stack pointer and base.
8589 * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Include
8590 <pthread.h>, <libc-pointer-arith.h> and <sys/prctl.h>.
8591 (__push___start_context): New prototype.
8592 (__makecontext): Call __push___start_context to allocate a new
8593 shadow stack, push __start_context onto the new stack as well
8594 as the new shadow stack.
8595 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Include
8596 <asm/prctl.h>.
8597 (__setcontext): Restore the target shadow stack.
8598 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Include
8599 <asm/prctl.h>.
8600 (__swapcontext): Record the current shadow stack base. Save
8601 the caller's shadow stack pointer and base. Restore the target
8602 shadow stack.
8603 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
8604 (STACK_SIZE_TO_SHADOW_STACK_SIZE_SHIFT): New.
8605 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym (oSSP): New.
8606
8607 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8608
8609 * stdlib/Makefile ((tests): Add tst-setcontext6, tst-setcontext7,
8610 tst-setcontext8 and tst-setcontext9.
8611 * stdlib/tst-setcontext6.c: New file.
8612 * stdlib/tst-setcontext7.c: Likewise.
8613 * stdlib/tst-setcontext8.c: Likewise.
8614 * stdlib/tst-setcontext9.c: Likewise.
8615
8616 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8617
8618 * stdlib/Makefile ((tests): Add tst-setcontext5.
8619 * stdlib/tst-setcontext5.c: New file.
8620
8621 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8622
8623 * stdlib/Makefile (tests): Add tst-setcontext4.
8624 * stdlib/tst-setcontext4.c: New file.
8625
8626 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8627
8628 * stdlib/Makefile (tests): Add tst-swapcontext1.
8629 * stdlib/tst-swapcontext1.c: New test.
8630
8631 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8632
8633 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1,
8634 tst-cet-legacy-2, tst-cet-legacy-2a, tst-cet-legacy-3,
8635 tst-cet-legacy-4, tst-cet-legacy-4a, tst-cet-legacy-4b
8636 and tst-cet-legacy-4c.
8637 (modules-names): Add tst-cet-legacy-mod-1, tst-cet-legacy-mod-2
8638 and tst-cet-legacy-mod-4.
8639 (CFLAGS-tst-cet-legacy-2.c): New.
8640 (CFLAGS-tst-cet-legacy-mod-1.c): Likewise.
8641 (CFLAGS-tst-cet-legacy-mod-2.c): Likewise.
8642 (CFLAGS-tst-cet-legacy-3.c): Likewise.
8643 (CFLAGS-tst-cet-legacy-4.c): Likewise.
8644 (CFLAGS-tst-cet-legacy-mod-4.c): Likewise.
8645 ($(objpfx)tst-cet-legacy-1): Likewise.
8646 ($(objpfx)tst-cet-legacy-2): Likewise.
8647 ($(objpfx)tst-cet-legacy-2.out): Likewise.
8648 ($(objpfx)tst-cet-legacy-2a): Likewise.
8649 ($(objpfx)tst-cet-legacy-2a.out): Likewise.
8650 ($(objpfx)tst-cet-legacy-4): Likewise.
8651 ($(objpfx)tst-cet-legacy-4.out): Likewise.
8652 ($(objpfx)tst-cet-legacy-4a): Likewise.
8653 ($(objpfx)tst-cet-legacy-4a.out): Likewise.
8654 (tst-cet-legacy-4a-ENV): Likewise.
8655 ($(objpfx)tst-cet-legacy-4b): Likewise.
8656 ($(objpfx)tst-cet-legacy-4b.out): Likewise.
8657 (tst-cet-legacy-4b-ENV): Likewise.
8658 ($(objpfx)tst-cet-legacy-4c): Likewise.
8659 ($(objpfx)tst-cet-legacy-4c.out): Likewise.
8660 (tst-cet-legacy-4c-ENV): Likewise.
8661 * sysdeps/x86/tst-cet-legacy-1.c: New file.
8662 * sysdeps/x86/tst-cet-legacy-2.c: Likewise.
8663 * sysdeps/x86/tst-cet-legacy-2a.c: Likewise.
8664 * sysdeps/x86/tst-cet-legacy-3.c: Likewise.
8665 * sysdeps/x86/tst-cet-legacy-4.c: Likewise.
8666 * sysdeps/x86/tst-cet-legacy-4a.c: Likewise.
8667 * sysdeps/x86/tst-cet-legacy-4b.c: Likewise.
8668 * sysdeps/x86/tst-cet-legacy-4c.c: Likewise.
8669 * sysdeps/x86/tst-cet-legacy-mod-1.c: Likewise.
8670 * sysdeps/x86/tst-cet-legacy-mod-2.c: Likewise.
8671 * sysdeps/x86/tst-cet-legacy-mod-4.c: Likewise.
8672
8673 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8674
8675 * sysdeps/i386/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
8676 * sysdeps/i386/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
8677 with ssp_base.
8678 * sysdeps/x86_64/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
8679 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
8680 with ssp_base.
8681
8682 2018-07-25 Andreas Schwab <schwab@suse.de>
8683
8684 [BZ #23442]
8685 * locale/weightwc.h (findidx): Handle the case where usrc is a
8686 prefix of cp but one character too short.
8687
8688 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8689
8690 * NEWS: Add ISO C threads addition.
8691
8692 2018-07-24 Florian Weimer <fweimer@redhat.com>
8693
8694 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
8695 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_MLOCK2)
8696 (__ASSUME_COPY_FILE_RANGE): Undefine. Kernel support was added in
8697 4.13.
8698
8699 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8700
8701 * sysdeps/unix/sysv/linux/x86/include/asm/prctl.h: New file.
8702 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Include
8703 <sys/prctl.h> and <asm/prctl.h>.
8704 (get_cet_status): Call arch_prctl with ARCH_CET_STATUS.
8705 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Include <sys/prctl.h>
8706 and <asm/prctl.h>.
8707 (dl_cet_allocate_legacy_bitmap): Call arch_prctl with
8708 ARCH_CET_LEGACY_BITMAP.
8709 (dl_cet_disable_cet): Call arch_prctl with ARCH_CET_DISABLE.
8710 (dl_cet_lock_cet): Call arch_prctl with ARCH_CET_LOCK.
8711 * sysdeps/x86/libc-start.c: Include <startup.h>.
8712
8713 2018-07-24 Florian Weimer <fweimer@redhat.com>
8714
8715 * sysdeps/unix/sysv/linux/sh/kernel-features.h (__ASSUME_STATX):
8716 Undefine. Suggested by Romain Naour <romain.naour@gmail.com>.
8717
8718 2018-07-24 Rical Jasan <rj@2c3t.io>
8719 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8720 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
8721
8722 [BZ #14092]
8723 * manual/debug.texi: Update adjacent chapter name.
8724 * manual/probes.texi: Likewise.
8725 * manual/threads.texi (ISO C Threads): New section.
8726 (POSIX Threads): Convert to a section.
8727
8728 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8729 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
8730
8731 [BZ# 14092]
8732 * nptl/Makefile (tests): Add new test files.
8733 * nptl/tst-call-once.c : New file. Tests C11 functions and types.
8734 * nptl/tst-cnd-basic.c: Likewise.
8735 * nptl/tst-cnd-broadcast.c: Likewise.
8736 * nptl/tst-cnd-timedwait.c: Likewise.
8737 * nptl/tst-mtx-basic.c: Likewise.
8738 * nptl/tst-mtx-recursive.c: Likewise.
8739 * nptl/tst-mtx-timedlock.c: Likewise.
8740 * nptl/tst-mtx-trylock.c: Likewise.
8741 * nptl/tst-thrd-basic.c: Likewise.
8742 * nptl/tst-thrd-detach.c: Likewise.
8743 * nptl/tst-thrd-sleep.c: Likewise.
8744 * nptl/tst-tss-basic.c: Likewise.
8745
8746 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8747
8748 [BZ #14092]
8749 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
8750 (thrd_current, thrd_equal, thrd_sleep, thrd_yield): Add C11 thread
8751 symbols.
8752 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
8753 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
8754 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
8755 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
8756 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
8757 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
8758 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
8759 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
8760 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
8761 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
8762 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
8763 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
8764 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
8765 Likewise.
8766 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
8767 Likewise.
8768 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
8769 Likewise.
8770 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
8771 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
8772 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
8773 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
8774 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
8775 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
8776 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
8777 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
8778 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
8779 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist [[GLIBC_2.28]
8780 (call_once, cnd_broadcast, cnd_destroy, cnd_init, cnd_signal,
8781 cnd_timedwait, cnd_wait, mtx_destroy, mtx_init, mtx_lock,
8782 mtx_timedlock, mtx_trylock, mtx_unlokc, thrd_create, thrd_detach,
8783 thrd_exit, thrd_join, tss_create, tss_delete, tss_get, tss_set):
8784 Likewise.
8785 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
8786 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
8787 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
8788 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
8789 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
8790 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
8791 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
8792 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
8793 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
8794 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
8795 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
8796 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
8797 ikewise.
8798 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
8799 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
8800 Likewise.
8801 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
8802 Likewise.
8803 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
8804 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
8805 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
8806 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
8807 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
8808 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
8809 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
8810 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
8811
8812 [BZ #14092]
8813 * conform/data/threads.h-data (thread_local): New macro.
8814 (TSS_DTOR_ITERATIONS): Likewise.
8815 (tss_t): New type.
8816 (tss_dtor_t): Likewise.
8817 (tss_create): New function.
8818 (tss_get): Likewise.
8819 (tss_set): Likewise.
8820 (tss_delete): Likewise.
8821 * nptl/Makefile (libpthread-routines): Add tss_create, tss_delete,
8822 tss_get, and tss_set objects.
8823 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
8824 * nptl/tss_create.c: New file.
8825 * nptl/tss_delete.c: Likewise.
8826 * nptl/tss_get.c: Likewise.
8827 * nptl/tss_set.c: Likewise.
8828 * sysdeps/nptl/threads.h (thread_local): New define.
8829 (TSS_DTOR_ITERATIONS): Likewise.
8830 (tss_t): New typedef.
8831 (tss_dtor_t): Likewise.
8832 (tss_create): New prototype.
8833 (tss_get): Likewise.
8834 (tss_set): Likewise.
8835 (tss_delete): Likewise.
8836
8837 [BZ #14092]
8838 * conform/data/threads.h-data (cnd_t): New type.
8839 (cnd_init): New function.
8840 (cnd_signal): Likewise.
8841 (cnd_broadcast): Likewise.
8842 (cnd_wait): Likewise.
8843 (cnd_timedwait): Likewise.
8844 (cnd_destroy): Likewise.
8845 * nptl/Makefile (libpthread-routines): Add cnd_broadcast,
8846 cnd_destroy, cnd_init, cnd_signal, cnd_timedwait, and cnd_wait
8847 object.
8848 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
8849 * nptl/cnd_broadcast.c: New file.
8850 * nptl/cnd_destroy.c: Likewise.
8851 * nptl/cnd_init.c: Likewise.
8852 * nptl/cnd_signal.c: Likewise.
8853 * nptl/cnd_timedwait.c: Likewise.
8854 * nptl/cnd_wait.c: Likewise.
8855 * sysdeps/nptl/threads.h (cnd_t): New type.
8856 (cnd_init): New prototype.
8857 (cnd_signa): Likewise.
8858 (cnd_broadcast): Likewise.
8859 (cnd_wait): Likewise.
8860 (cnd_timedwait): Likewise.
8861 (cnd_destroy): Likewise.
8862
8863 [BZ #14092]
8864 * conform/data/threads.h-data (ONCE_FLAG_INIT): New macro.
8865 (once_flag): New type.
8866 (call_once): New function.
8867 * nptl/Makefile (libpthread-routines): Add call_once object.
8868 * nptl/Versions (libphread) [GLIBC_2.28]: Add call_once symbol.
8869 * nptl/call_once.c: New file.
8870 * sysdeps/nptl/threads.h (ONCE_FLAG_INIT): New define.
8871 (once_flag): New type.
8872 (call_once): New prototype.
8873
8874 [BZ #14092]
8875 * conform/data/threads.h-data (mtx_plain): New constant.
8876 (mtx_recursive): Likewise.
8877 (mtx_timed): Likewise.
8878 (mtx_t): New type.
8879 (mtx_init): New function.
8880 (mtx_lock): Likewise.
8881 (mtx_timedlock): Likewise.
8882 (mtx_trylock): Likewise.
8883 (mtx_unlock): Likewise.
8884 (mtx_destroy): Likewise.
8885 * nptl/Makefile (libpthread-routines): Add mtx_destroy, mtx_init,
8886 mtx_lock, mtx_timedlock, mtx_trylock, and mtx_unlock object.
8887 * nptl/Versions (libpthread) [GLIBC_2.28]): Add mtx_init, mtx_lock,
8888 mtx_timedlock, mtx_trylock, mtx_unlock, and mtx_destroy.
8889 * nptl/mtx_destroy.c: New file.
8890 * nptl/mtx_init.c: Likewise.
8891 * nptl/mtx_lock.c: Likewise.
8892 * nptl/mtx_timedlock.c: Likewise.
8893 * nptl/mtx_trylock.c: Likewise.
8894 * nptl/mtx_unlock.c: Likewise.
8895 * sysdeps/nptl/threads.h (mtx_plain): New enumeration.
8896 (mtx_recursive): Likewise.
8897 (mtx_timed): Likewise.
8898 (mtx_t): New type.
8899 (mtx_init): New prototype.
8900 (mtx_lock): Likewise.
8901 (mtx_timedlock): Likewise.
8902 (mtx_trylock): Likewise.
8903 (mtx_unlock): Likewise.
8904 (mtx_destroy): Likewise.
8905
8906 [BZ #14092]
8907 * conform/Makefile (conformtest-headers-ISO11): Add threads.h.
8908 (linknamespace-libs-ISO11): Add libpthread.a.
8909 * conform/data/threads.h-data: New file: add C11 thrd_* types and
8910 functions.
8911 * include/stdc-predef.h (__STDC_NO_THREADS__): Remove definition.
8912 * nptl/Makefile (headers): Add threads.h.
8913 (libpthread-routines): Add new C11 thread thrd_create, thrd_current,
8914 thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, and
8915 thrd_yield.
8916 * nptl/Versions (libpthread) [GLIBC_2.28]): Add new C11 thread
8917 thrd_create, thrd_current, thrd_detach, thrd_equal, thrd_exit,
8918 thrd_join, thrd_sleep, and thrd_yield symbols.
8919 * nptl/descr.h (struct pthread): Add c11 field.
8920 * nptl/pthreadP.h (ATTR_C11_THREAD): New define.
8921 * nptl/pthread_create.c (START_THREAD_DEFN): Call C11 thread start
8922 routine with expected function prototype.
8923 (__pthread_create_2_1): Add C11 threads check based on attribute
8924 value.
8925 * sysdeps/unix/sysdep.h (INTERNAL_SYSCALL_CANCEL): New macro.
8926 * nptl/thrd_create.c: New file.
8927 * nptl/thrd_current.c: Likewise.
8928 * nptl/thrd_detach.c: Likewise.
8929 * nptl/thrd_equal.c: Likewise.
8930 * nptl/thrd_exit.c: Likewise.
8931 * nptl/thrd_join.c: Likewise.
8932 * nptl/thrd_priv.h: Likewise.
8933 * nptl/thrd_sleep.c: Likewise.
8934 * nptl/thrd_yield.c: Likewise.
8935 * include/threads.h: Likewise.
8936
8937 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8938
8939 * bits/indirect-return.h: New file.
8940 * misc/sys/cdefs.h (__glibc_has_attribute): New.
8941 * sysdeps/x86/bits/indirect-return.h: Likewise.
8942 * stdlib/Makefile (headers): Add bits/indirect-return.h.
8943 * stdlib/ucontext.h: Include <bits/indirect-return.h>.
8944 (swapcontext): Add __INDIRECT_RETURN.
8945 * string/tst-xbzero-opt.c (ALWAYS_INLINE): New.
8946 (prepare_test_buffer): Use it.
8947
8948 2018-07-24 Andreas Schwab <schwab@suse.de>
8949
8950 [BZ #23448]
8951 * iconvdata/ibm1364.c (MAX_NEEDED_OUTPUT) [FROM_LOOP]: Define.
8952 (MAX_NEEDED_INPUT) [TO_LOOP]: Define.
8953
8954 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8955
8956 * sysdeps/unix/sysv/linux/i386/vfork.S (SYSCALL_ERROR_HANDLER):
8957 Redefine if shadow stack is enabled.
8958 (SYSCALL_ERROR_LABEL): Likewise.
8959 (__vfork): Pop shadow stack and jump back to to caller directly
8960 when shadow stack is in use.
8961 * sysdeps/unix/sysv/linux/x86_64/vfork.S (SYSCALL_ERROR_HANDLER):
8962 Redefine if shadow stack is enabled.
8963 (SYSCALL_ERROR_LABEL): Likewise.
8964 (__vfork): Pop shadow stack and jump back to to caller directly
8965 when shadow stack is in use.
8966
8967 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8968
8969 * sysdeps/x86_64/tst-quadmod1.S (func): Add endbr64 if IBT is
8970 enabled.
8971 (foo): Likewise.
8972 * sysdeps/x86_64/tst-quadmod2.S (func) : Likewise.
8973 (foo): Likewise.
8974
8975 2018-07-20 Joseph Myers <joseph@codesourcery.com>
8976
8977 * scripts/build-many-glibcs.py (Context.checkout): Default
8978 binutils version to 2.31 branch.
8979
8980 2018-07-20 Zong Li <zong@andestech.com>
8981
8982 * scripts/build-many-glibcs.py (Context.checkout_tar): Change the
8983 URL of gcc's tarball.
8984
8985 2018-07-20 Florian Weimer <fweimer@redhat.com>
8986
8987 [BZ #23396]
8988 * posix/regcomp.c (build_equiv_class): When comparing weights, do
8989 not compare an extra byte after the end of the weights.
8990
8991 2018-07-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
8992
8993 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Set multiple_threads
8994 to 1.
8995 * sysdeps/hurd/include/hurd/port.h [!_ISOMAC]: Do not declare libc
8996 hidden prototypes.
8997 * sysdeps/mach/include/mach-shortcuts-hidden.h [!_ISOMAC]: Likewise.
8998 * sysdeps/mach/include/mach/mach_traps.h [!_ISOMAC]: Likewise.
8999 * scripts/check-execstack.awk: Consider `xfail' variable containing a
9000 list of libraries whose stack executability is expected.
9001 * elf/Makefile ($(objpfx)check-execstack.out): Pass
9002 $(check-execstack-xfail) to check-execstack.awk through `xfail'
9003 variable.
9004 * sysdeps/mach/hurd/i386/Makefile (check-execstack-xfail): Set to ld.so
9005 libc.so libpthread.so.
9006
9007 2018-07-20 Thomas Schwinge <tschwinge@gnu.org>
9008
9009 * sysdeps/mach/hurd/socket.c (__socket): Handle SOCK_CLOEXEC and
9010 SOCK_NONBLOCK.
9011 * sysdeps/mach/hurd/socketpair.c (__socketpair): Handle SOCK_CLOEXEC
9012 and SOCK_NONBLOCK.
9013 * sysdeps/mach/hurd/pipe2.c: New file, copy from pipe.c. Evolve it to
9014 implement __pipe2.
9015 * sysdeps/mach/hurd/pipe.c (__pipe): Reimplement using __pipe2.
9016
9017 2018-07-19 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
9018
9019 * benchtests/scripts/compare_bench.py (__main__): use the argparse
9020 library to improve command line parsing.
9021 (__main__): make schema file as optional parameter (--schema),
9022 defaulting to benchtests/scripts/benchout.schema.json.
9023 (main): move out of the parsing stuff to __main_  and leave it
9024 only as caller of main comparison functions.
9025
9026 2018-07-19 H.J. Lu <hongjiu.lu@intel.com>
9027
9028 * NEWS: Add a note for Intel CET status.
9029 * manual/install.texi: Likewise.
9030 * INSTALL: Regenerated.
9031
9032 2018-07-18 Quentin PAGÈS <provaires@quentino.fr>
9033
9034 [BZ #23140]
9035 * localedata/locales/oc_FR (mon): Rename to...
9036 (alt_mon): This, then update October (typo fix).
9037 (mon): New content (genitive case, month names preceded by
9038 "de" or "d’").
9039
9040 [BZ #23422]
9041 * localedata/locales/oc_FR (abday): Update all items.
9042 (day): Update Wednesday and Saturday (typo fixes).
9043 (abmon): Update all items, except May.
9044 (d_fmt): Update "%d.%m.%Y" -> "%d/%m/%Y".
9045 (LC_IDENTIFICATION): Bump the revision number and date.
9046 Keep the "category" entries in alphabetic order.
9047 (LC_ADDRESS): Remove no longer needed comment.
9048 (LC_COLLATE): Use “copy "ca_ES"”.
9049 (LC_NAME): Set the correct values of "name_fmt", "name_mr", and
9050 "name_mrs".
9051
9052 2018-07-18 Joseph Myers <joseph@codesourcery.com>
9053
9054 * grp/tst_fgetgrent.c: Include <unistd.h>.
9055 (main): Use mkstemp instead of tmpnam.
9056 * io/test-utime.c (main): Likewise.
9057 * posix/annexc.c (macrofile): Change to modifiable array.
9058 (main): Remove macrofile here.
9059 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
9060 macrofile here.
9061 (check_header): Do not remove macrofile here.
9062 * posix/bug-getopt1.c: Include <stdlib.h>.
9063 (do_test): Use mkstemp instead of tmpnam.
9064 * posix/bug-getopt2.c: Include <stdlib.h>.
9065 (do_test): Use mkstemp instead of tmpnam.
9066 * posix/bug-getopt3.c: Include <stdlib.h>.
9067 (do_test): Use mkstemp instead of tmpnam.
9068 * posix/bug-getopt4.c: Include <stdlib.h>.
9069 (do_test): Use mkstemp instead of tmpnam.
9070 * posix/bug-getopt5.c: Include <stdlib.h>.
9071 (do_test): Use mkstemp instead of tmpnam.
9072 * stdio-common/bug7.c: Include <stdlib.h> and <unistd.h>.
9073 (main): Use mkstemp instead of tmpnam.
9074 * stdio-common/tst-fdopen.c: Include <stdlib.h>.
9075 (main): Use mkstemp instead of tmpnam.
9076 * stdio-common/tst-ungetc.c: Include <stdlib.h>.
9077 (main): use mkstemp instead of tmpnam.
9078 * stdlib/isomac.c (macrofile): Change to modifiable array.
9079 (main): Remove macrofile here.
9080 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
9081 macrofile here.
9082 (check_header): Do not remove macrofile here.
9083
9084 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9085
9086 * manual/tunables.texi: Document glibc.tune.x86_ibt and
9087 glibc.tune.x86_shstk.
9088
9089 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9090
9091 * NEWS: Mention --enable-cet.
9092 * manual/install.texi: Document --enable-cet.
9093 * INSTALL: Regenerated.
9094
9095 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9096
9097 * sysdeps/x86_64/multiarch/memcmp-sse4.S (BRANCH_TO_JMPTBL_ENTRY):
9098 Add _CET_NOTRACK before indirect jump to jump table.
9099
9100 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9101
9102 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S
9103 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9104 to jump table.
9105
9106 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9107
9108 * sysdeps/i386/i686/multiarch/strcat-sse2.S
9109 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9110 to jump table.
9111
9112 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9113
9114 * sysdeps/i386/i686/multiarch/strcpy-sse2.S
9115 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9116 to jump table.
9117
9118 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9119
9120 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S
9121 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9122 to jump table.
9123
9124 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9125
9126 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
9127 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9128 to jump table.
9129 (BRANCH_TO_JMPTBL_ENTRY_TAIL): Likewise.
9130
9131 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9132
9133 * sysdeps/i386/i686/multiarch/memcmp-sse4.S
9134 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9135 to jump table.
9136
9137 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9138
9139 * sysdeps/i386/i686/multiarch/memset-sse2.S
9140 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9141 to jump table.
9142
9143 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9144
9145 * sysdeps/i386/i686/memcmp.S (memcmp): Add _CET_NOTRACK before
9146 indirect jump to jump table.
9147
9148 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9149
9150 * sysdeps/x86_64/multiarch/memcpy-ssse3.S
9151 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9152 to jump table.
9153 (MEMCPY): Likewise.
9154
9155 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9156
9157 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
9158 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9159 to jump table.
9160 (MEMCPY): Likewise.
9161
9162 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9163
9164 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
9165 _CET_NOTRACK before indirect jump to jump table.
9166
9167 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9168
9169 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S
9170 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9171 to jump table.
9172
9173 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9174
9175 * sysdeps/x86_64/strcmp.S (STRCMP): Add _CET_NOTRACK before
9176 indirect jump to jump table.
9177
9178 2018-07-18 Valery Timiriliyev <timiriliyev@gmail.com>
9179
9180 [BZ #22241]
9181 * localedata/Makefile (test-input): Add sah_RU.UTF-8.
9182 (LOCALES): Likewise.
9183 * localedata/SUPPORTED (sah_RU/UTF-8): New entry.
9184 * localedata/locales/sah_RU: New file.
9185 * localedata/sah_RU.UTF-8.in: New file.
9186
9187 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9188
9189 * sysdeps/i386/add_n.S: Include <sysdep.h>, instead of
9190 "sysdep.h".
9191 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
9192 _CET_ENDBR to indirect jump targets and adjust jump destination
9193 for _CET_ENDBR.
9194 * sysdeps/i386/i686/add_n.S: Include <sysdep.h>, instead of
9195 "sysdep.h".
9196 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
9197 _CET_ENDBR to indirect jump targets and adjust jump destination
9198 for _CET_ENDBR.
9199 * sysdeps/i386/sub_n.S: Include <sysdep.h>, instead of
9200 "sysdep.h".
9201 (__mpn_sub_n): Save and restore %ebx if IBT is enabed. Add
9202 _CET_ENDBR to indirect jump targets and adjust jump destination
9203 for _CET_ENDBR.
9204
9205 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9206
9207 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
9208 _CET_ENDBR.
9209
9210 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9211
9212 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_return): Add
9213 _CET_ENDBR.
9214 (_dl_tlsdesc_undefweak): Likewise.
9215 (_dl_tlsdesc_dynamic): Likewise.
9216 (_dl_tlsdesc_resolve_abs_plus_addend): Likewise.
9217 (_dl_tlsdesc_resolve_rel): Likewise.
9218 (_dl_tlsdesc_resolve_rela): Likewise.
9219 (_dl_tlsdesc_resolve_hold): Likewise.
9220 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_return): Likewise.
9221 (_dl_tlsdesc_undefweak): Likewise.
9222 (_dl_tlsdesc_dynamic): Likewise.
9223 (_dl_tlsdesc_resolve_rela): Likewise.
9224 (_dl_tlsdesc_resolve_hold): Likewise.
9225
9226 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9227
9228 * sysdeps/i386/crti.S (_init): Add _CET_ENDBR.
9229 (_fini): Likewise.
9230 * sysdeps/x86_64/crti.S (_init): Likewise.
9231 (_fini): Likewise.
9232
9233 2018-07-17 Rafal Luzynski <digitalfreak@lingonborough.com>
9234
9235 [BZ #23140]
9236 * localedata/locales/os_RU (mon): Rename to...
9237 (alt_mon): This.
9238 (mon): Import from CLDR (genitive case).
9239
9240 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9241
9242 * sysdeps/x86/cpu-features.c: Always include <dl-cet.h> and
9243 cet-tunables.h> when CET is enabled.
9244
9245 2018-07-16 H.J. Lu <hongjiu.lu@intel.com>
9246
9247 [BZ #21598]
9248 * configure.ac: Add --enable-cet.
9249 * configure: Regenerated.
9250 * elf/Makefille (all-built-dso): Add a comment.
9251 * elf/dl-load.c (filebuf): Moved before "dynamic-link.h".
9252 Include <dl-prop.h>.
9253 (_dl_map_object_from_fd): Call _dl_process_pt_note on PT_NOTE
9254 segment.
9255 * elf/dl-open.c: Include <dl-prop.h>.
9256 (dl_open_worker): Call _dl_open_check.
9257 * elf/rtld.c: Include <dl-prop.h>.
9258 (dl_main): Call _rtld_process_pt_note on PT_NOTE segment. Call
9259 _rtld_main_check.
9260 * sysdeps/generic/dl-prop.h: New file.
9261 * sysdeps/i386/dl-cet.c: Likewise.
9262 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Likewise.
9263 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Likewise.
9264 * sysdeps/x86/cet-tunables.h: Likewise.
9265 * sysdeps/x86/check-cet.awk: Likewise.
9266 * sysdeps/x86/configure: Likewise.
9267 * sysdeps/x86/configure.ac: Likewise.
9268 * sysdeps/x86/dl-cet.c: Likewise.
9269 * sysdeps/x86/dl-procruntime.c: Likewise.
9270 * sysdeps/x86/dl-prop.h: Likewise.
9271 * sysdeps/x86/libc-start.h: Likewise.
9272 * sysdeps/x86/link_map.h: Likewise.
9273 * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Add
9274 _CET_ENDBR.
9275 (_dl_runtime_profile): Likewise.
9276 (_dl_runtime_resolve_shstk): New.
9277 (_dl_runtime_profile_shstk): Likewise.
9278 * sysdeps/linux/x86/Makefile (sysdep-dl-routines): Add dl-cet
9279 if CET is enabled.
9280 (CFLAGS-.o): Add -fcf-protection if CET is enabled.
9281 (CFLAGS-.os): Likewise.
9282 (CFLAGS-.op): Likewise.
9283 (CFLAGS-.oS): Likewise.
9284 (asm-CPPFLAGS): Add -fcf-protection -include cet.h if CET
9285 is enabled.
9286 (tests-special): Add $(objpfx)check-cet.out.
9287 (cet-built-dso): New.
9288 (+$(cet-built-dso:=.note)): Likewise.
9289 (common-generated): Add $(cet-built-dso:$(common-objpfx)%=%.note).
9290 ($(objpfx)check-cet.out): New.
9291 (generated): Add check-cet.out.
9292 * sysdeps/x86/cpu-features.c: Include <dl-cet.h> and
9293 <cet-tunables.h>.
9294 (TUNABLE_CALLBACK (set_x86_ibt)): New prototype.
9295 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
9296 (init_cpu_features): Call get_cet_status to check CET status
9297 and update dl_x86_feature_1 with CET status. Call
9298 TUNABLE_CALLBACK (set_x86_ibt) and TUNABLE_CALLBACK
9299 (set_x86_shstk). Disable and lock CET in libc.a.
9300 * sysdeps/x86/cpu-tunables.c: Include <cet-tunables.h>.
9301 (TUNABLE_CALLBACK (set_x86_ibt)): New function.
9302 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
9303 * sysdeps/x86/sysdep.h (_CET_NOTRACK): New.
9304 (_CET_ENDBR): Define if not defined.
9305 (ENTRY): Add _CET_ENDBR.
9306 * sysdeps/x86/dl-tunables.list (glibc.tune): Add x86_ibt and
9307 x86_shstk.
9308 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve): Add
9309 _CET_ENDBR.
9310 (_dl_runtime_profile): Likewise.
9311
9312 2018-07-16 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
9313
9314 [BZ #21895]
9315 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Remove condition code for
9316 restore r2 on longjmp.
9317 * sysdeps/powerpc/powerpc64/Makefile: Added tst-setjmp-bug21895-static to
9318 test list.
9319 Added rules to build test tst-setjmp-bug21895-static.
9320 Added module setjmp-bug21895 and rules to build a shared object from it.
9321 * sysdeps/powerpc/powerpc64/setjmp-bug21895.c: New test file.
9322 * sysdeps/powerpc/powerpc64/tst-setjmp-bug21895-static.c: New test file.
9323
9324 2018-07-15 Wilco Dijkstra <wdijkstr@arm.com>
9325
9326 * benchtests/bench-strcasestr.c: Rename __strnlen to strnlen.
9327 * benchtests/bench-strstr.c: Likewise.
9328 * string/memmem.c (FASTSEARCH): Define.
9329 * string/str-two-way.h (two_way_short_needle): Minor cleanups.
9330 Add support for FASTSEARCH.
9331 * string/strcasestr.c (AVAILABLE): Use read-ahead __strnlen.
9332 * string/strstr.c (AVAILABLE): Use read-ahead __strnlen.
9333 (FASTSEARCH): Define.
9334 * string/test-strcasestr.c: Rename __strnlen to strnlen.
9335 * string/test-strstr.c: Likewise.
9336
9337 2018-07-15 H.J. Lu <hongjiu.lu@intel.com>
9338
9339 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Undef
9340 SHADOW_STACK_POINTER_OFFSET after including <jmp_buf-ssp.h>.
9341
9342 2018-07-14 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
9343 H.J. Lu <hongjiu.lu@intel.com>
9344
9345 * sysdeps/i386/__longjmp.S: Include <jmp_buf-ssp.h>.
9346 (__longjmp): Restore shadow stack pointer if shadow stack is
9347 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
9348 isn't defined for __longjmp_cancel.
9349 * sysdeps/i386/bsd-_setjmp.S: Include <jmp_buf-ssp.h>.
9350 (_setjmp): Save shadow stack pointer if shadow stack is enabled
9351 and SHADOW_STACK_POINTER_OFFSET is defined.
9352 * sysdeps/i386/bsd-setjmp.S: Include <jmp_buf-ssp.h>.
9353 (setjmp): Save shadow stack pointer if shadow stack is enabled
9354 and SHADOW_STACK_POINTER_OFFSET is defined.
9355 * sysdeps/i386/setjmp.S: Include <jmp_buf-ssp.h>.
9356 (__sigsetjmp): Save shadow stack pointer if shadow stack is
9357 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9358 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Include
9359 <jmp_buf-ssp.h>.
9360 (____longjmp_chk): Restore shadow stack pointer if shadow stack
9361 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9362 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
9363 Remove jmp_buf-ssp.sym.
9364 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
9365 <jmp_buf-ssp.h>.
9366 (____longjmp_chk): Restore shadow stack pointer if shadow stack
9367 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9368 * sysdeps/x86/Makefile (gen-as-const-headers): Add
9369 jmp_buf-ssp.sym.
9370 * sysdeps/x86/jmp_buf-ssp.sym: New dummy file.
9371 * sysdeps/x86_64/__longjmp.S: Include <jmp_buf-ssp.h>.
9372 (__longjmp): Restore shadow stack pointer if shadow stack is
9373 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
9374 isn't defined for __longjmp_cancel.
9375 * sysdeps/x86_64/setjmp.S: Include <jmp_buf-ssp.h>.
9376 (__sigsetjmp): Save shadow stack pointer if shadow stack is
9377 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9378
9379 2018-07-14 H.J. Lu <hongjiu.lu@intel.com>
9380
9381 [BZ #22563]
9382 * nptl/pthread_create.c: Include <tls-setup.h>.
9383 (__pthread_create_2_1): Call tls_setup_tcbhead.
9384 * sysdeps/generic/tls-setup.h: New file.
9385 * sysdeps/x86/nptl/tls-setup.h: Likewise.
9386 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
9387 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET):
9388 Likewise.
9389 * sysdeps/i386/nptl/tls.h (tcbhead_t): Rename __glibc_reserved1
9390 to feature_1.
9391 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
9392 * sysdeps/x86/sysdep.h (X86_FEATURE_1_IBT): New.
9393 (X86_FEATURE_1_SHSTK): Likewise.
9394 (CET_ENABLED): Likewise.
9395 (IBT_ENABLED): Likewise.
9396 (SHSTK_ENABLED): Likewise.
9397
9398 2018-07-13 Rafal Luzynski <digitalfreak@lingonborough.com>
9399
9400 [BZ #23208]
9401 * localedata/Makefile (test-input): Add dsb_DE.UTF-8.
9402 (LOCALES): Likewise.
9403 * localedata/dsb_DE.UTF-8.in: New file.
9404 * localedata/locales/dsb_DE (LC_COLLATE): Fix syntax error.
9405
9406 2018-07-12 Florian Weimer <fweimer@redhat.com>
9407
9408 * nptl/allocatestack.c [_STACK_GROWS_UP] (allocate_stack): Call
9409 __mprotect, not mprotect.
9410
9411 2018-07-11 Florian Weimer <fweimer@redhat.com>
9412
9413 * io/Makefile (headers): Add bits/statx.h.
9414
9415 2018-07-10 Mike FABIAN <mfabian@redhat.com>
9416
9417 * localedata/charmaps/UTF-8: Use correct Unicode version 11.0.0 in comment.
9418 * localedata/locales/i18n_ctype: Use correct Unicode version in comments
9419 and headers.
9420 * localedata/unicode-gen/utf8_gen.py: Add option to specify Unicode version
9421 * localedata/unicode-gen/Makefile: Use option to specify Unicode version
9422 for utf8_gen.py
9423
9424 2018-07-10 Florian Weimer <fweimer@redhat.com>
9425
9426 * io/Makefile (routines): Add statx.
9427 (tests-internal): Add tst-statx.
9428 * io/Versions (GLIBC_2.28): Export statx.
9429 * io/bits/statx.h: New file.
9430 * io/sys/stat.h [__USE_GNU]: Include it.
9431 * io/fcntl.h [__USE_GNU] (AT_STATX_SYNC_TYPE)
9432 (AT_STATX_SYNC_AS_STAT, AT_STATX_FORCE_SYNC, AT_STATX_DONT_SYNC):
9433 Define.
9434 * io/statx.c: New file.
9435 * io/statx_generic.: Likewise.
9436 * io/tst-statx.: Likewise.
9437 * include/bits/statx.h: Likewise.
9438 * sysdeps/unix/sysv/linux/kernel-features.h
9439 [__LINUX_KERNEL_VERSION >= 0x040B00] (__ASSUME_STATX): Define.
9440 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9441 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_STATX): Undefine.
9442 * sysdeps/unix/sysv/linux/ia64/kernel-features.h (__ASSUME_STATX):
9443 Undefine.
9444 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9445 [__LINUX_KERNEL_VERSION < 0x040C00] (__ASSUME_STATX): Undefine.
9446 * sysdeps/unix/sysv/linux/statx.c: New file.
9447 * manual/filesys.texi: Note that statx is undocumented.
9448 * sysdeps/**/libc*.abilist: Update.
9449
9450 2018-07-10 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9451
9452 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Add a comment about
9453 a kernel issue which lead to test failure in some cases.
9454
9455 2018-07-10 Florian Weimer <fweimer@redhat.com>
9456
9457 [BZ #23036]
9458 * posix/regexec.c (check_node_accept_bytes): When comparing
9459 weights, do not compare an extra byte after the end of the
9460 weights.
9461
9462 2018-07-10 Florian Weimer <fweimer@redhat.com>
9463
9464 * libio/readline.c: Fix copyright year.
9465 * libio/tst-readline.c Likewise.
9466 * nss/tst-nss-files-hosts-getent.c: Likewise.
9467
9468 2018-07-06 Florian Weimer <fweimer@redhat.com>
9469
9470 [BZ #18991]
9471 * nss/nss_files/files-XXX.c (internal_getent): Use
9472 __libc_readline_unlocked. Seek back to the start of the line if
9473 parsing failes with ERANGE.
9474 (get_contents_ret, get_contents): Remove.
9475 * nss/tst-nss-files-hosts-getent.c: New file.
9476 * nss/Makefile (tests): Add tst-nss-files-hosts-getent.
9477 (tst-nss-files-hosts-getent): Link with -ldl.
9478
9479 2018-07-06 Florian Weimer <fweimer@redhat.com>
9480
9481 * include/stdio.h (__libc_readline_unlocked): Declare.
9482 (__ftello64, __fseeko64): Declare aliases.
9483 * libio/readline.c: New file.
9484 * libio/tst-readline.c: Likewise.
9485 (routines): Add readline.
9486 (tests-internal): Add tst-readlime.
9487 * libio/Versions (GLIBC_PRIVATE): Export __fseeko64, __ftello64,
9488 __libc_readline_unlocked.
9489 * libio/fseeko.c (__fseeko): Rename from fseeko.
9490 (fseeko): Add alias.
9491 [__OFF_T_MATCHES_OFF64_T] (fseeko64, __fseeko64): Likewise.
9492 * libio/fseeko64.c (__fseeko64): Rename from fseeko64.
9493 (fseeko64): Add alias.
9494 * libio/ftello.c [__OFF_T_MATCHES_OFF64_T] (__ftello64): Add alias.
9495 * libio/ftello64.c (__ftello64): Rename from ftello64.
9496 (ftello64): Add alias.
9497
9498 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
9499
9500 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT): Add
9501 HWCAP_ATOMICS.
9502
9503 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
9504
9505 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (init_cpu_features):
9506 Use dl_hwcap without masking.
9507 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT):
9508 Remove HWCAP_CPUID.
9509
9510 2018-07-06 Florian Weimer <fweimer@redhat.com>
9511
9512 * conform/conformtest.pl (checknamespace): Escape literal braces
9513 in regular expressions.
9514
9515 2018-07-06 Amit Pawar <amit.pawar@amd.com>
9516
9517 * sysdeps/x86/cpu-features.c (get_common_indeces):
9518 AVX_Fast_Unaligned_Load is enabled when AVX2 is detected.
9519 * sysdeps/x86/cpu-features.c (init_cpu_features):
9520 AVX_Fast_Unaligned_Load is disabled for Excavator core.
9521
9522 2018-07-05 Florian Weimer <fweimer@redhat.com>
9523
9524 * csu/Makefile (CFLAGS-static-reloc.os): Build with stack
9525 protector.
9526 (CFLAGS-elf-init.oS): Likewise.
9527
9528 2018-07-05 Florian Weimer <fweimer@redhat.com>
9529 Carlos O'Donell <carlos@redhat.com>
9530
9531 * debug/Makefile (CFLAGS-stack_chk_fail_local.c): Remove
9532 $(no-stack-protector). stack_chk_fail_local.c can be compiled
9533 with stack protector enabled because there is no risk of infinite
9534 recursion.
9535
9536 2018-07-05 Maciej W. Rozycki <macro@mips.com>
9537
9538 [BZ #19818]
9539 [BZ #23307]
9540 * libc-abis (ABSOLUTE): New ABI.
9541 * sysdeps/unix/sysv/linux/mips/libc-abis (ABSOLUTE): New ABI.
9542 * NEWS: Mention the new ABI.
9543
9544 2018-07-05 Florian Weimer <fweimer@redhat.com>
9545
9546 [BZ # 17662]
9547 * libio/stdio.h [__USE_GNU] (RENAME_NOREPLACE, RENAME_EXCHANGE)
9548 (RENAME_WHITEOUT): Define.
9549 [__USE_GNU] (renameat2): Declare.
9550 * stdio-common/Makefile (routines): Add renameat2.
9551 (tests): Add tst-renameat2.
9552 * stdio-common/Versions (GLIBC_2_28): Export renameat2.
9553 * stdio-common/renameat2.c: New file.
9554 * stdio-common/tst-renameat2.c: Likewise.
9555 * sysdeps/unix/sysv/linux/renameat2.c: Likewise.
9556 * manual/filesys.texi (Temporary Files): Note that renameat2 is
9557 undocumented.
9558 * sysdeps/unix/sysv/linux/kernel-features.h
9559 [__LINUX_KERNEL_VERSION >= 0x030F00] (__ASSUME_RENAMEAT2): Define.
9560 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9561 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
9562 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9563 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
9564 * sysdeps/unix/sysv/linux/sh/kernel-features.h
9565 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_RENAMEAT2): Undefine.
9566 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
9567 [__LINUX_KERNEL_VERSION < 0x031000] (__ASSUME_RENAMEAT2): Undefine.
9568 * include/stdio.h (__renameat): Add alias for renameat.
9569 * stdio-common/renameat.c (__renameat): Rename from renameat.
9570 Add hidden definition and alias.
9571 * sysdeps/unix/sysv/linux/renameat.c: Likewise.
9572 * sysdeps/mach/hurd/renameat.c: Likewise.
9573 * sysdeps/**/libc*.abilist: Add renameat2.
9574
9575 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9576
9577 * posix/bug-regex33.c: Fix build after regex sync.
9578
9579 2018-07-04 Carlos O'Donell <carlos@redhat.com>
9580
9581 [BZ #23164]
9582 * localedata/tst-langinfo-setlocale.c: New file.
9583 * localedata/tst-langinfo-setlocale-static.c: New file.
9584 * localedata/tst-langinfo-newlocale.c: New file.
9585 * localedata/tst-langinfo-newlocale-static.c: New file.
9586 * localedata/Makefile (test-srcs): Remove tst-langinfo. Add
9587 tst-langinfo-setlocale, tst-langinfo-setlocale-static,
9588 tst-langinfo-newlocale, tst-langinfo-newlocale-static.
9589 (tests-static): Remove tst-langinfo-static. Add
9590 tst-langinfo-newlocale-static, tst-langinfo-setlocale-static.
9591 (tests-special): Remove $(objpfx)tst-langinfo.out,
9592 $(objpfx)tst-langinfo-static.out. Add
9593 $(objpfx)tst-langinfo-setlocale.out,
9594 $(objpfx)tst-langinfo-newlocale.out,
9595 $(objpfx)tst-langinfo-setlocale-static.out,
9596 $(objpfx)tst-langinfo-newlocale-static.out.
9597 ($(objpfx)tst-langinfo.out): Remove.
9598 ($(objpfx)tst-langinfo-static.out): Remove.
9599 ($(objpfx)tst-langinfo-newlocale.out): New target.
9600 ($(objpfx)tst-langinfo-newlocale-static.out): New target.
9601 (test-xfail-tst-langinfo-newlocale-static): Add.
9602 ($(objpfx)tst-langinfo-setlocale.out): New target.
9603 ($(objpfx)tst-langinfo-setlocale-static.out): New target.
9604 * localedata/tst-langinfo.c: Call test_locale.
9605 * localedata/tst-langinfo.sh: Add LC_MONETARY CURRENCY_SYMBOL test
9606 data.
9607
9608 2018-07-04 Florian Weimer <fweimer@redhat.com>
9609
9610 testrun.sh: Implement --tool=strace, --tool=valgrind
9611 * Makefile (testrun-script): Define variable.
9612 (testrun.sh): Use variable.
9613 * manual/install.texi (Tools for Compilation): make 4.0 or later
9614 is required.
9615 * configure.ac: Check for make 4.0 or later.
9616 * INSTALL: Regenerate.
9617 * configure: Likewise.
9618
9619 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9620
9621 [BZ #23233]
9622 [BZ #21163]
9623 [BZ #18986]
9624 [BZ #13762]
9625 * posix/Makefile (tests): Add bug-regex37 and bug-regex38.
9626 * posix/PCRE.tests: Remove invalid test.
9627 * posix/bug-regex28.c: Fix expected values for used syntax.
9628 * posix/bug-regex37.c: New file.
9629 * posix/bug-regex38.c: Likewise.
9630 * posix/regcomp.c: Sync with gnulib.
9631 * posix/regex.c: Likewise.
9632 * posix/regex.h: Likewise.
9633 * posix/regex_internal.c: Likewise.
9634 * posix/regex_internal.h: Likewise.
9635 * posix/regexec.c: Likewise.
9636
9637 2018-06-26 Mike FABIAN <mfabian@redhat.com>
9638
9639 [BZ #23308]
9640 * unicode-gen/Makefile (UNICODE_VERSION): Set to 11.0.0.
9641 * localedata/unicode-gen/DerivedCoreProperties.txt: Update to Unicode 11.0.0.
9642 * localedata/unicode-gen/EastAsianWidth.txt: likewise.
9643 * localedata/unicode-gen/PropList.txt: likewise.
9644 * localedata/unicode-gen/UnicodeData.txt: likewise.
9645 * localedata/charmaps/UTF-8: Regenerate.
9646 * localedata/locales/i18n_ctype: likewise.
9647 * localedata/locales/tr_TR: likewise.
9648 * localedata/locales/translit_circle: likewise.
9649 * localedata/locales/translit_cjk_compat: likewise.
9650 * localedata/locales/translit_combining: likewise.
9651 * localedata/locales/translit_compat: likewise.
9652 * localedata/locales/translit_font: likewise.
9653 * localedata/locales/translit_fraction: likewise.
9654
9655 2018-07-03 Florian Weimer <fweimer@redhat.com>
9656
9657 [BZ #23363]
9658 * stdio-common/tst-printf.c (DEC, INT, UNS, fp_test): Remove.
9659 * stdio-common/tst-printf.sh: Adjust expected output.
9660 * LICENSES: Update.
9661
9662 2018-07-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9663
9664 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl): Remove
9665 symbol.
9666
9667 2018-07-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
9668
9669 * stdio-common/Makefile (test-srcs): Add tst-printfsz-islongdouble.
9670 (tests-special) Add $(objpfx)tst-printfsz-islongdouble.out.
9671 ($(objpfx)tst-printfsz-islongdouble.out): New build and run rule.
9672 * stdio-common/tst-printfsz-islongdouble.c: New file.
9673 * stdio-common/tst-printfsz-islongdouble.sh: Likewise.
9674 * sysdeps/ieee754/ldbl-128ibm-compat/Makefile:
9675 [subdir == stdio-common] (routines): Add ieee128-printf_size.
9676 [subdir == stdio-common] (tests-internal): Add
9677 test-printf-size-ieee128, and test-printf-size-ibm128.
9678 [subdir == stdio-common] (CFLAGS-test-printf-size-ieee128.c)
9679 (CFLAGS-test-printf-size-ibm128.c): New variables.
9680 [subdir == stdio-common] (tests-special): Add
9681 $(objpfx)test-printf-size-ieee128.out and
9682 $(objpfx)test-printf-size-ibm128.out.
9683 [subdir == stdio-common] ($(objpfx)test-printf-size-ieee128.out)
9684 ($(objpfx)test-printf-size-ibm128.out): New build and run rules.
9685 * sysdeps/ieee754/ldbl-128ibm-compat/Versions (libc): Add
9686 __printf_sizeieee128.
9687 * sysdeps/ieee754/ldbl-128ibm-compat/ieee128-printf_size.c:
9688 New file.
9689 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ibm128.c:
9690 Likewise.
9691 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ieee128.c:
9692 Likewise.
9693
9694 2018-07-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
9695
9696 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Use uint32_t.
9697 (exp2f_inline): Likewise.
9698 * sysdeps/ieee754/flt-32/math_config.h (__math_oflowf): Likewise.
9699 (__math_uflowf): Likewise.
9700 (__math_may_uflowf): Likewise.
9701 (__math_divzerof): Likewise.
9702 (__math_invalidf): Likewise.
9703 * sysdeps/ieee754/flt-32/math_errf.c (xflowf): Likewise.
9704 (__math_oflowf): Likewise.
9705 (__math_uflowf): Likewise.
9706 (__math_may_uflowf): Likewise.
9707 (__math_divzerof): Likewise.
9708 (__math_invalidf): Likewise.
9709
9710 2018-06-29 DJ Delorie <dj@redhat.com>
9711 Carlos O'Donell <carlos@redhat.com>
9712
9713 [BZ #23329]
9714 * include/libc-symbols.h: Comment the freeres framework.
9715 * include/set-hooks.h: Include libc-symbols.h. Fix comment.
9716 * dlfcn/Makefile (libdl-routines): Add dlfreeres.
9717 * dlfcn/Versions (GLIBC_PRIVATE): Add __libdl_freeres.
9718 * dlfcn/dlerror.c: Include libc-symbols.h
9719 (__dlerror_main_freeres): New function.
9720 * dlfcn/dlfreeres.c: New file.
9721 * dlfcn/sdlfreeres.c: New file.
9722 * include/dlfcn.h: Declare __dlerror_main_freeres.
9723 * malloc/set-freeres.c: Declare __libdl_freeres, and
9724 __libpthread_freeres.
9725 (__libc_subfreeres): Call __libdl_freeres, and __libpthread_freeres if
9726 the releavant libraries are loaded.
9727 * malloc/thread-freeres.c: Add comments.
9728 * nptl/Makefile (libpthread-routines): Add nptlfreeres.
9729 * nptl/Version (GLIBC_PRIVATE): Add __libpthread_freeres.
9730 * nptl/allocatestack.c (__nptl_free_stacks): New function.
9731 (__free_stacks): Rename to...
9732 (free_stacks): ...this. Mark static.
9733 (queue_stack): Call free_stacks.
9734 * nptl/libc_pthread_init.c [SHARED] (freeres_libpthread): Delete.
9735 * nptl/nptl-init.c: Delete delcaration of nptl_freeres.
9736 * sysdeps/nptl/pthread-functions.h (pthread_functions): Remove
9737 ptr_freeres element from struct.
9738 (pthread_functions): Remove .ptr_freeres from struct initializer.
9739 [SHARED] (nptl_freeres): Remove.
9740 * nptl/nptlfreeres.c: New file.
9741 * nptl/pthreadP.h
9742 [IS_IN (libpthread) && SHARED ] (__unwind_freeres): Rename to...
9743 [IS_IN (libpthread)] (__nptl_unwind_freeres): ...this. Mark
9744 attribute_hidden.
9745 (__free_stacks): Rename to...
9746 (__nptl_stacks_freeres): ...this.
9747 (__shm_directory_freeres): Declare.
9748 * nptl/unwind-forcedunwind.c (__unwind_freeres): Rename to...
9749 (__nptl_unwind_freeres): ...this.
9750 * resolv/res-close.c: Add comment.
9751 * resolv/resolv_conf.c: Include libc-symbols.h.
9752 * string/strerror_l.c: Include libc-symbols.h.
9753 * sunrpc/rpc_thread.c: Include libc-symbols.h.
9754 * sysdeps/mach/strerror_l.c: Inlcude libc-symbols.h
9755 * sysdeps/unix/sysv/linux/shm-directory.c (freeit): Rename to...
9756 [IS_IN (libpthread)] (__shm_directory_freeres): ...this.
9757
9758 2018-06-29 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
9759
9760 * stdlib/tst-strfmon_l.c: Add tests for long double.
9761
9762 2018-06-29 Michael Wolf <milupo@sorbzilla.de>
9763
9764 [BZ #23208]
9765 * localedata/SUPPORTED (dsb_DE/UTF-8): New entry.
9766 * localedata/locales/dsb_DE: New file.
9767
9768 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
9769
9770 [BZ #23140]
9771 * localedata/locales/hy_AM (mon): Synchronize with CLDR (lowercase,
9772 genitive case).
9773 (alt_mon): New entry, import from CLDR (nominative case).
9774
9775 2018-06-29 Sylvain Lesage <severo@rednegra.net>
9776
9777 [BZ #22996]
9778 * localedata/locales/es_BO (LC_PAPER): Change to “copy "en_US"”.
9779
9780 2018-06-29 Siddhesh Poyarekar <siddhesh@sourceware.org>
9781
9782 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
9783 Use vector registers.
9784
9785 * sysdeps/aarch64/multiarch/memmove_falkor.S
9786 (__memcpy_falkor): Use vector registers.
9787
9788 2018-06-29 Martin Sebor <msebor@redhat.com>
9789
9790 * manual/stdio.texi (Customizing Printf): Mention interaction
9791 with GCC built-ins.
9792
9793 2018-06-29 Maciej W. Rozycki <macro@mips.com>
9794
9795 [BZ #23307]
9796 * elf/dl-lookup.c (check_match): Do not reject a symbol whose
9797 `st_value' is 0 if `st_shndx' is SHN_ABS.
9798 * elf/tst-absolute-zero.c: New file.
9799 * elf/tst-absolute-zero-lib.c: New file.
9800 * elf/tst-absolute-zero-lib.lds: New file.
9801 * elf/Makefile (tests): Add `tst-absolute-zero'.
9802 (modules-names): Add `tst-absolute-zero-lib'.
9803 (LDLIBS-tst-absolute-zero-lib.so): New variable.
9804 ($(objpfx)tst-absolute-zero-lib.so): New dependency.
9805 ($(objpfx)tst-absolute-zero: New dependency.
9806
9807 2018-06-29 Zack Weinberg <zackw@panix.com>
9808
9809 * configure.ac: New command-line option --disable-crypt.
9810 Force --disable-nss-crypt when --disable-crypt is given, with a
9811 warning if it was explicitly enabled.
9812 * configure: Regenerate.
9813 * config.make.in: New boolean substitution variable $(build-crypt).
9814 * Makeconfig: Only include 'crypt' in all-subdirs and rpath-dirs
9815 when $(build-crypt).
9816 * manual/install.texi: Document --disable-crypt.
9817 * INSTALL: Regenerate.
9818
9819 * crypt/Makefile: Remove code conditional on $(crypt-in-libc),
9820 which is never set.
9821 * conform/Makefile: Only include libcrypt.a in
9822 linknamespace-libs-xsi and linknamespace-libs-XPG4
9823 when $(build-crypt).
9824 * elf/Makefile (CFLAGS-tst-linkall-static.c): Only define
9825 USE_CRYPT to 1 when $(build-crypt).
9826 (tst-linkall-static): Only link libcrypt.a when $(build-crypt).
9827 (localplt-built-dso): Only add libcrypt.so when $(build-crypt).
9828 * elf/tst-linkall-static.c: Only include crypt.h when USE_CRYPT.
9829
9830 2018-06-29 Zack Weinberg <zackw@panix.com>
9831
9832 * crypt/crypt.h, posix/unistd.h: Update comments and
9833 prototypes for crypt and crypt_r.
9834
9835 * manual/crypt.texi (Cryptographic Functions): New initial
9836 exposition.
9837 (crypt): Section renamed to 'Passphrase Storage'. Full rewrite.
9838 (Unpredictable Bytes): Improve initial exposition. Clarify error
9839 behavior of getentropy and getrandom.
9840 * manual/examples/genpass.c: Generate a salt using getentropy
9841 instead of the current time. Use hash $5$ (SHA-2-256).
9842 * manual/examples/testpass.c: Demonstrate validation against
9843 hashes generated with three different one-way functions.
9844
9845 * manual/intro.texi: crypt.texi does not need an overview
9846 anymore.
9847
9848 * manual/nss.texi, manual/memory.texi, manual/socket.texi
9849 * manual/terminal.texi: Consistently refer to "passphrases"
9850 * instead of "passwords", and to the "user database" instead
9851 * of the "password database".
9852 * manual/users.texi: Similarly. Add notes about how actual
9853 passphrase hashes are now stored in the shadow database.
9854 Remove 20-year-old junk todo note.
9855
9856 2018-06-29 Zack Weinberg <zackw@panix.com>
9857
9858 * manual/crypt.texi: Use a normal top-level @node declaration.
9859 Move most of the introductory text to the 'crypt' section.
9860 Move the example programs below the @deftypefun for 'crypt_r'.
9861 Move the 'getpass' section...
9862 * manual/terminal.texi: ...here.
9863
9864 2018-06-29 Zack Weinberg <zackw@panix.com>
9865 Florian Weimer <fweimer@redhat.com>
9866
9867 * posix/unistd.h: Do not declare encrypt.
9868 (_XOPEN_CRYPT): Remove macro definition.
9869 (crypt): Declare only for _USE_MISC.
9870 * stdlib/stdlib.h: Do not declare setkey.
9871 * crypt/crypt.h: Do not declare encrypt, setkey, encrypt_r, setkey_r.
9872 * sunrpc/Makefile: Do not install des_crypt.h nor rpc_des.h.
9873
9874 * crypt/crypt-entry.c: Make fcrypt a compat symbol.
9875 * crypt/crypt_util.c: Make encrypt, encrypt_r, setkey, setkey_r
9876 into compat symbols. Don't define initial_perm if it's not
9877 going to be used.
9878 * crypt/cert.c: Link explicitly with the expected versions for
9879 setkey and encrypt. If they are not available at all, mark
9880 the test as unsupported.
9881
9882 * sunrpc/des_crypt.c: Unconditionally block linkage with
9883 cbc_crypt and ecb_crypt for new binaries.
9884 * sunrpc/des_soft.c: Unconditionally block linkage with
9885 des_setparity for new binaries.
9886
9887 * manual/crypt.texi: Remove the entire "DES Encryption"
9888 section. Also remove the paragraph talking about FIPS 140-2
9889 from the introduction.
9890 * manual/string.texi (strfry, memfrob): Revise. Recommend use
9891 of libgcrypt for "real" encryption, not DES.
9892 * manual/conf.texi (Constants for Sysconf): Mention that
9893 _XOPEN_CRYPT is no longer impelemented.
9894
9895 * conform/data/unistd.h-data: Remove crypt function declaration.
9896
9897 2018-06-29 Florian Weimer <fweimer@redhat.com>
9898
9899 [BZ #23351]
9900 * malloc/hooks.c: Update comments on restoring of dumped heaps.
9901 (disallow_malloc_check): Remove variable.
9902 (__malloc_check_init): Adjust.
9903 (malloc_set_state): Update comment.
9904 * malloc/malloc.c (__malloc_get_state, __malloc_set_state): Remove
9905 declarations.
9906
9907 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
9908
9909 [BZ #23140]
9910 * localedata/locales/ast_ES (mon): Rename to...
9911 (alt_mon): This.
9912 (mon): Import from CLDR (genitive case).
9913
9914 2018-06-29 Daniel Alvarez <dalvarez@redhat.com>
9915 Jakub Sitnicki <jkbs@redhat.com>
9916
9917 [BZ #21812]
9918 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Retry
9919 on NLM_F_DUMP_INTR.
9920
9921 2018-06-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
9922
9923 * manual/llio.texi: Remove spurious space.
9924
9925 2018-06-28 Florian Weimer <fweimer@redhat.com>
9926
9927 [BZ #23349]
9928 * time/bits/types/struct_timespec.h: Change header inclusion guard to
9929 _STRUCT_TIMESPEC.
9930
9931 2018-06-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
9932
9933 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128,
9934 __strtoieee128, __strtoieee128_l,__wcstoieee128 and __wcstoieee128_l.
9935 * sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c: New file.
9936 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c: New file.
9937 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c: New file.
9938 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c: New file.
9939 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c: New file.
9940
9941 2018-06-27 Maciej W. Rozycki <macro@mips.com>
9942
9943 [BZ #23266]
9944 * nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_pwent):
9945 Copy and null-terminate entries that are not terminated, in
9946 addition to empty ones.
9947
9948 2018-06-27 Florian Weimer <fweimer@redhat.com>
9949
9950 [BZ #18023]
9951 * include/alloca.h (stackinfo_alloca_round, extend_alloca)
9952 (extend_alloca_account): Remove.
9953 * manual/stdio.texi (Variable Arguments Output): Update comment.
9954
9955 2018-06-27 Joseph Myers <joseph@codesourcery.com>
9956
9957 * nptl/sockperf.c: Remove file.
9958
9959 2018-06-27 Florian Weimer <fweimer@redhat.com>
9960
9961 [BZ #18023]
9962 * elf/dl-deps.c (_dl_map_object_deps): Use struct
9963 scratch_buffer instead of extend_alloca.
9964
9965 2018-06-27 Florian Weimer <fweimer@redhat.com>
9966
9967 [BZ #18023]
9968 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Use struct
9969 scratch_buffer instead of extend_alloca. Update comments.
9970
9971 2018-06-27 Florian Weimer <fweimer@redhat.com>
9972
9973 [BZ #18023]
9974 * posix/wordexp.c (parse_tilde): Use struct scratch_buffer
9975 instead of extend_alloca.
9976
9977 2018-06-26 Joseph Myers <joseph@codesourcery.com>
9978
9979 [BZ #13888]
9980 * posix/Makefile (CFLAGS-tst-spawn3.c): New variable.
9981 * posix/tst-spawn3.c (do_test): Put tst-spwan3.pid in OBJPFX, not
9982 /tmp.
9983 * scripts/test-installation.pl: Put temporary files in build
9984 directory, not /tmp.
9985 * stdio-common/Makefile (CFLAGS-bug3.c): New variable.
9986 (CFLAGS-bug4.c): Likewise.
9987 (CFLAGS-bug5.c): Likewise.
9988 (CFLAGS-test-fseek.c): Likewise.
9989 (CFLAGS-test-popen.c): Likewise.
9990 (CFLAGS-test_rdwr.c): Likewise.
9991 * stdio-common/bug3.c (main): Put temporary file in OBJPFX, not
9992 /tmp.
9993 * stdio-common/bug4.c (main): Likewise.
9994 * stdio-common/bug5.c (main): Likewise.
9995 * stdio-common/test-fseek.c (TESTFILE): Likewise.
9996 * stdio-common/test-popen.c (do_test): Likewise.
9997 * stdio-common/test_rdwr.c (main): Likewise.
9998
9999 2018-06-26 Patsy Franklin <pfrankli@redhat.com>
10000
10001 * nptl/sem_open.c [!__HAVE_64B_ATOMICS] (sem_open): Don't update pad.
10002 (sem_open): Set sem.newsem.pad to zero for valgrind.
10003
10004 2018-06-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
10005
10006 [BZ #20251]
10007 * NEWS: Mention fcntl64 addition.
10008 * csu/check_fds.c: Replace __fcntl_nocancel by __fcntl64_nocancel.
10009 * login/utmp_file.c: Likewise.
10010 * sysdeps/posix/fdopendir.c: Likewise.
10011 * sysdeps/posix/opendir.c: Likewise.
10012 * sysdeps/unix/pt-fcntl.c: Likewise.
10013 * include/fcntl.h (__libc_fcntl64, __fcntl64,
10014 __fcntl64_nocancel_adjusted): New prototype.
10015 (__fcntl_nocancel_adjusted): Remove prototype.
10016 * io/Makefile (routines): Add fcntl64.
10017 (CFLAGS-fcntl64.c): New rule.
10018 * io/Versions [GLIBC_2.28] (fcntl64): New symbol.
10019 [GLIBC_PRIVATE] (__libc_fcntl): Rename to __libc_fcntl64.
10020 * io/fcntl.h (fcntl64): Add prototype and redirect if
10021 __USE_FILE_OFFSET64 is defined.
10022 * io/fcntl64.c: New file.
10023 * manual/llio.text: Add a note for which commands fcntl acts a
10024 cancellation point.
10025 * nptl/Makefile (CFLAGS-fcntl64.c): New rule.
10026 * sysdeps/mach/hurd/fcntl.c: Alias fcntl to fcntl64 symbols.
10027 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl, fcntl64):
10028 New symbols.
10029 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Fix F_GETLK64,
10030 F_OFD_GETLK, F_SETLK64, F_SETLKW64, F_OFD_SETLK, and F_OFD_SETLKW for
10031 non-LFS case.
10032 * sysdeps/unix/sysv/linux/fcntl64.c: New file.
10033 * sysdeps/unix/sysv/linux/fcntl_nocancel.c (__fcntl_nocancel): Rename
10034 to __fcntl64_nocancel.
10035 (__fcntl_nocancel_adjusted): Rename to __fcntl64_nocancel_adjusted.
10036 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Rename
10037 to __fcntl64_nocancel.
10038 * sysdeps/generic/not-cancel.h: Likewise.
10039 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: New file.
10040 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-ofdlocks.
10041 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
10042 (fcntl64): New symbol.
10043 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
10044 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
10045 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
10046 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
10047 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
10048 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
10049 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
10050 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
10051 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
10052 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
10053 * sysdeps/unix/sysv/linux/arm/libc.abilist [GLIBC_2.28] (fcntl,
10054 fcntl64): Likewise.
10055 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
10056 * sysdeps/unix/sysv/linux/i386/libc.abilis: Likewise.
10057 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
10058 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
10059 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
10060 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
10061 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
10062 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
10063 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
10064 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
10065 Likewise.
10066 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
10067 Likewise.
10068 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
10069 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
10070 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
10071
10072 2018-06-26 Florian Weimer <fweimer@redhat.com>
10073
10074 Run thread shutdown functions in an explicit order.
10075 * malloc/thread-freeres.c (__libc_thread_subfreeres): Remove hook
10076 definition.
10077 (__libc_thread_freeres): Call thread shutdown functions
10078 explicitly.
10079 * include/rpc/rpc.h (__rpc_thread_destroy): Add hidden attribute.
10080 * include/string.h (__strerror_thread_freeres): Declare.
10081 * malloc/arena.c (__malloc_arena_thread_freeres): Renamed from
10082 arena_thread_freeres. No longer static. Remove thread shutdown
10083 hook registration.
10084 * malloc/malloc-internal.h (__malloc_arena_thread_freeres):
10085 Declare.
10086 * resolv/res-close.c (__res_thread_freeres): Renamed from
10087 res_thread_freeres. No longer static. Remove thread shutdown
10088 hook registration.
10089 * resolv/resolv-internal.h (__res_thread_freeres): Declare.
10090 * resolv/resolv_conf.c (freeres): Remove incorrect section
10091 attribute and use libc_freeres_fn.
10092 * string/strerror_l.c (__strerror_thread_freeres): Renamed from
10093 strerror_thread_freeres. No longer static. Remove thread
10094 shutdown hook registration.
10095 * sysdeps/mach/strerror_l.c (__strerror_thread_freeres): Likewise.
10096 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Remove thread
10097 shutdown hook registration.
10098 * Makerules (shlib.lds): Do not provide section boundary symbols
10099 for __libc_thread_subfreeres.
10100 * manual/memory.texi (Basic Allocation): Update comment.
10101
10102 2018-06-26 Florian Weimer <fweimer@redhat.com>
10103
10104 Remove always-defined _RPC_THREAD_SAFE_ macro.
10105 * sunrpc/Makefile (sunrpc-CPPFLAGS, CPPFLAGS, BUILD_CPPFLAGS):
10106 Do not define _RPC_THREAD_SAFE_.
10107 * include/rpc/rpc.h: Remove _RPC_THREAD_SAFE_ preprocessor
10108 conditional.
10109 * sunrpc/clnt_perr.c: Likewise.
10110 * sunrpc/clnt_raw.c: Likewise.
10111 * sunrpc/clnt_simp.c: Likewise.
10112 * sunrpc/key_call.c: Likewise.
10113 * sunrpc/rpc_common.c: Likewise.
10114 * sunrpc/rpc_main.c: Likewise.
10115 * sunrpc/rpc_thread.c: Likewise.
10116 * sunrpc/svc.c: Likewise.
10117 * sunrpc/svc_raw.c: Likewise.
10118 * sunrpc/svc_simple.c: Likewise.
10119 * sumrpc/svcauth_des.c: Likewise.
10120
10121 2018-06-26 Florian Weimer <fweimer@redhat.com>
10122
10123 * libio/Makefile (tests-internal): Add tst-vtables,
10124 tst-vtables-interposed.
10125 * libio/tst-vtables.c: New file.
10126 * libio/tst-vtables-common.c: Likewise.
10127 * libio/tst-vtables-interposed.c: Likewise.
10128
10129 2018-06-26 Florian Weimer <fweimer@redhat.com>
10130
10131 * support/support_test_main.c (support_test_main): Only call
10132 setvbuf if not disables.
10133 * support/test-driver.c (main): Check TEST_NO_SETVBUF.
10134 * support/test-driver.h (struct test_config): Add no_setvbuf member.
10135
10136 2018-06-26 Florian Weimer <fweimer@redhat.com>
10137
10138 [BZ #23313]
10139 * libio/vtables.c (check_stdfiles_vtables): New ELF constructor.
10140
10141 2018-06-25 Florian Weimer <fweimer@redhat.com>
10142
10143 [BZ #18023]
10144 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
10145 Use struct scratch_buffer instead of extend_alloca.
10146
10147 2018-06-25 Florian Weimer <fweimer@redhat.com>
10148
10149 [BZ #18023]
10150 * nss/getent.c (initgroups_keys): Use dynarray instead of
10151 extend_alloca.
10152
10153 2018-06-25 Florian Weimer <fweimer@redhat.com>
10154
10155 [BZ #18023]
10156 * nis/nss_nis/nis-initgroups.c (get_uid, _nss_nis_initgroups_dyn):
10157 Use struct scratch_buffer instead of extend_alloca.
10158
10159 2018-06-25 Florian Weimer <fweimer@redhat.com>
10160
10161 [BZ #18023]
10162 * nss/nss_compat/compat-initgroups.c (getgrent_next_nss): Fall
10163 back to malloc directly, without stack allocations.
10164
10165 2018-06-25 Florian Weimer <fweimer@redhat.com>
10166
10167 [BZ #18023]
10168 * nscd/aicache.c (addhstaiX): Use struct scratch_buffer instead
10169 of extend_alloca.
10170
10171 2018-06-25 Florian Weimer <fweimer@redhat.com>
10172
10173 [BZ #18023]
10174 * nscd/grpcache.c (addgrbyX): Use struct scratch_buffer instead
10175 of extend_alloca.
10176 * nscd/hstcache.c (addhstbyX): Likewise.
10177 * nscd/pwdcache.c (addpwbyX): Likewise.
10178 * nscd/servicescache.c (addservbyX): Likewise.
10179
10180 2018-06-25 Florian Weimer <fweimer@redhat.com>
10181
10182 [BZ #18023]
10183 * nscd/connections.c (read_cmdline): New function.
10184 (restart): Use it. Update comment.
10185
10186 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
10187
10188 [BZ #23140]
10189 * localedata/locales/csb_PL (mon): Rename to...
10190 (alt_mon): This.
10191 (abmon): Rename to...
10192 (ab_alt_mon): This.
10193 (mon): Add with proper genitive forms, copy from Wikipedia.
10194 (abmon): Likewise.
10195
10196 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
10197
10198 [BZ #19485]
10199 * localedata/locales/csb_PL (mon): Fix typos:
10200 "łżëkwiôt" -> "łżëkwiat" (April); "lëpinc" -> "lëpińc" (July).
10201 (yesstr): Add, value is "jo".
10202 (nostr): Add, value is "nié".
10203
10204 2018-06-22 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10205
10206 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Set as the generic file for
10207 all log1p and significand functions on m680x0.
10208 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_log1p.c instead
10209 of s_significand.c..
10210 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Likewise.
10211 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Likewise.
10212 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Likewise.
10213 * sysdeps/m68k/m680x0/fpu/s_significand.c: Move all the code to
10214 s_log1p.c and include it..
10215
10216 2018-06-21 Vincent Chen <vincentc@andestech.com>
10217
10218 * elf/elf.h (R_NDS32_NONE): New define.
10219 (R_NDS32_32_RELA): Likewise.
10220 (R_NDS32_COPY): Likewise.
10221 (R_NDS32_GLOB_DAT): Likewise.
10222 (R_NDS32_JUMP_SLOT): Likewise.
10223 (R_NDS32_RELATIVE): Likewise.
10224 (R_NDS32_TLS_TPOFF): Likewise.
10225 (R_NDS32_TLS_DESC): Likewise.
10226
10227 2018-06-21 Mark Wielaard <mark@klomp.org>
10228
10229 * elf/elf.h (R_BPF_MAP_FD): Removed.
10230 (R_BPF_64_64, R_BPF_64_32): New.
10231
10232 2018-06-21 Florian Weimer <fweimer@redhat.com>
10233
10234 [BZ #23253]
10235 * sysdeps/generic/math_private.h (default_libc_feholdsetround_ctx):
10236 Renamed from libc_feholdsetround_ctx.
10237 (default_libc_feresetround_ctx): Renamed from
10238 libc_feresetround_ctx.
10239 (default_libc_feholdsetround_noex_ctx): Renamed from
10240 libc_feholdsetround_noex_ctx.
10241 (default_libc_feresetround_noex_ctx): Renamed from
10242 libc_feresetround_noex_ctx.
10243 [!HAVE_RM_CTX] (libc_feholdsetround_ctx, libc_feresetround_ctx)
10244 (libc_feholdsetround_noex_ctx, libc_feresetround_noex_ctx): Macros
10245 forwardning to the old implementations under the new names.
10246 * sysdeps/i386/fpu/fenv_private.h [__SSE_MATH__]
10247 (libc_feholdexcept_setround_ctx, libc_fesetenv_ctx)
10248 (libc_feupdateenv_ctx, libc_feholdsetround_ctx)
10249 (libc_feresetround_ctx): Forward to default implements for i386
10250 and MATH_SET_BOTH_ROUNDING_MODES.
10251 * sysdeps/i386/Makefile [$(subdir) == math] (CFLAGS-e_gamma_r.c):
10252 Add -DMATH_SET_BOTH_ROUNDING_MODES.
10253
10254 2018-06-20 Joseph Myers <joseph@codesourcery.com>
10255
10256 * string/tst-cmp.c: Include <libc-diag.h>.
10257 (strncmp_max): Disable -Wstringop-overflow= around call to
10258 strncmp.
10259 (strncasecmp_max): Disable -Wstringop-overflow= around call to
10260 strncasecmp.
10261
10262 * string/bug-strpbrk1.c: Include <libc-diag.h>.
10263 (main): Disable -Wunused-value around call to strpbrk.
10264 * string/bug-strspn1.c: Include <libc-diag.h>.
10265 (main): Disable -Wunused-value around call to strspn.
10266
10267 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10268 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
10269
10270 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: New file.
10271 * sysdeps/ieee754/ldbl-128ibm-compat/libm-alias-float128.h: New file.
10272
10273 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10274
10275 * math/Makefile (libm-calls): Move s_significandF to...
10276 (gen-libm-calls): ... here.
10277 * math/s_significand_template.c: New file.
10278 * math/s_significand.c: Removed.
10279 * math/s_significandf.c: Removed.
10280 * math/s_significandl.c: Removed.
10281 * sysdeps/ieee754/ldbl-opt/s_significand.c: Removed.
10282 * sysdeps/ieee754/ldbl-opt/s_significandl.c: Removed.
10283
10284 * math/e_exp2_template.c (declare_mgen_finite_alias,
10285 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): Move to...
10286 * sysdeps/generic/math-type-macros.h (declare_mgen_finite_alias,
10287 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): ... here.
10288
10289 2018-06-20 Florian Weimer <fweimer@redhat.com>
10290
10291 * libio/libioP.h (IO_validate_vtable): Avoid ptrdiff_t overflow.
10292
10293 2018-06-19 Joseph Myers <joseph@codesourcery.com>
10294
10295 [BZ #23280]
10296 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Pass sign of
10297 floating-point number to strtod functions rather than possibly
10298 negating result of those functions.
10299 * stdio-common/tst-scanf-round.c: New file.
10300 * stdio-common/Makefile (tests): Add tst-scanf-round.
10301 ($(objpfx)tst-scanf-round): Depend on $(libm).
10302
10303 2018-06-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
10304
10305 * sysdeps/mach/hurd/localplt.data: Move to...
10306 * sysdeps/mach/hurd/i386/localplt.data: new file. Add + REL
10307 R_386_GLOB_DAT like on Linux i386.
10308
10309 2018-06-18 Joseph Myers <joseph@codesourcery.com>
10310
10311 * sysdeps/unix/sysv/linux/alpha/bits/shm.h [__USE_MISC]
10312 (SHM_STAT_ANY): New macro.
10313 * sysdeps/unix/sysv/linux/arm/bits/shm.h [__USE_MISC]
10314 (SHM_STAT_ANY): Likewise.
10315 * sysdeps/unix/sysv/linux/bits/shm.h [__USE_MISC]
10316 (SHM_STAT_ANY): Likewise.
10317 * sysdeps/unix/sysv/linux/generic/bits/shm.h [__USE_MISC]
10318 (SHM_STAT_ANY): Likewise.
10319 * sysdeps/unix/sysv/linux/hppa/bits/shm.h [__USE_MISC]
10320 (SHM_STAT_ANY): Likewise.
10321 * sysdeps/unix/sysv/linux/ia64/bits/shm.h [__USE_MISC]
10322 (SHM_STAT_ANY): Likewise.
10323 * sysdeps/unix/sysv/linux/mips/bits/shm.h [__USE_MISC]
10324 (SHM_STAT_ANY): Likewise.
10325 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h [__USE_MISC]
10326 (SHM_STAT_ANY): Likewise.
10327 * sysdeps/unix/sysv/linux/s390/bits/shm.h [__USE_MISC]
10328 (SHM_STAT_ANY): Likewise.
10329 * sysdeps/unix/sysv/linux/sh/bits/shm.h [__USE_MISC]
10330 (SHM_STAT_ANY): Likewise.
10331 * sysdeps/unix/sysv/linux/sparc/bits/shm.h [__USE_MISC]
10332 (SHM_STAT_ANY): Likewise.
10333 * sysdeps/unix/sysv/linux/x86/bits/shm.h [__USE_MISC]
10334 (SHM_STAT_ANY): Likewise.
10335
10336 * sysdeps/unix/sysv/linux/alpha/bits/sem.h [__USE_MISC]
10337 (SEM_STAT_ANY): New macro.
10338 * sysdeps/unix/sysv/linux/bits/sem.h [__USE_MISC]
10339 (SEM_STAT_ANY): Likewise.
10340 * sysdeps/unix/sysv/linux/generic/bits/sem.h [__USE_MISC]
10341 (SEM_STAT_ANY): Likewise.
10342 * sysdeps/unix/sysv/linux/hppa/bits/sem.h [__USE_MISC]
10343 (SEM_STAT_ANY): Likewise.
10344 * sysdeps/unix/sysv/linux/ia64/bits/sem.h [__USE_MISC]
10345 (SEM_STAT_ANY): Likewise.
10346 * sysdeps/unix/sysv/linux/mips/bits/sem.h [__USE_MISC]
10347 (SEM_STAT_ANY): Likewise.
10348 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h [__USE_MISC]
10349 (SEM_STAT_ANY): Likewise.
10350 * sysdeps/unix/sysv/linux/s390/bits/sem.h [__USE_MISC]
10351 (SEM_STAT_ANY): Likewise.
10352 * sysdeps/unix/sysv/linux/sparc/bits/sem.h [__USE_MISC]
10353 (SEM_STAT_ANY): Likewise.
10354 * sysdeps/unix/sysv/linux/x86/bits/sem.h [__USE_MISC]
10355 (SEM_STAT_ANY): Likewise.
10356
10357 * sysdeps/unix/sysv/linux/alpha/bits/msq.h [__USE_MISC]
10358 (MSG_STAT_ANY): New macro.
10359 * sysdeps/unix/sysv/linux/bits/msq.h [__USE_MISC]
10360 (MSG_STAT_ANY): Likewise.
10361 * sysdeps/unix/sysv/linux/generic/bits/msq.h [__USE_MISC]
10362 (MSG_STAT_ANY): Likewise.
10363 * sysdeps/unix/sysv/linux/hppa/bits/msq.h [__USE_MISC]
10364 (MSG_STAT_ANY): Likewise.
10365 * sysdeps/unix/sysv/linux/ia64/bits/msq.h [__USE_MISC]
10366 (MSG_STAT_ANY): Likewise.
10367 * sysdeps/unix/sysv/linux/mips/bits/msq.h [__USE_MISC]
10368 (MSG_STAT_ANY): Likewise.
10369 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h [__USE_MISC]
10370 (MSG_STAT_ANY): Likewise.
10371 * sysdeps/unix/sysv/linux/s390/bits/msq.h [__USE_MISC]
10372 (MSG_STAT_ANY): Likewise.
10373 * sysdeps/unix/sysv/linux/sparc/bits/msq.h [__USE_MISC]
10374 (MSG_STAT_ANY): Likewise.
10375 * sysdeps/unix/sysv/linux/x86/bits/msq.h [__USE_MISC]
10376 (MSG_STAT_ANY): Likewise.
10377
10378 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
10379 (MAP_TYPE): Change value to 0x2b.
10380
10381 2018-06-18 Florian Weimer <fweimer@redhat.com>
10382
10383 [BZ #15722]
10384 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Create Netlink
10385 socket with SOCK_CLOEXEC.
10386
10387 2018-06-18 Joseph Myers <joseph@codesourcery.com>
10388
10389 [BZ #23303]
10390 * sysdeps/powerpc/powerpc64/le/Makefile
10391 (CFLAGS-tst-strtod-nan-sign.c): Add -mfloat128.
10392 (CFLAGS-tst-wcstod-nan-sign.c): Likewise.
10393 (gnulib-tests): Also add $(f128-loader-link) for
10394 tst-strtod-nan-sign abd tst-wcstod-nan-sign.
10395
10396 2018-06-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
10397
10398 * include/sys/sendfile.h (__sendfile64): Declare hidden prototype.
10399 * sysdeps/mach/hurd/sendfile.c (sendfile): Call __sendfile64 instead
10400 of sendfile.
10401 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Rename to __sendfile64.
10402 (sendfile64): New strong alias.
10403 * sysdeps/mach/hurd/lseek.c: Include <errno.h>.
10404 * sysdeps/mach/hurd/lseek.c (__libc_lseek): Check that the value
10405 returned by __lseek64 can fit off_t, return EOVERFLOW otherwise.
10406 * sysdeps/htl/pthreadP.h (___pthread_get_cleanup_stack): Add hidden
10407 attribute.
10408 * htl/pt-join.c (__pthread_get_cleanup_stack): Define to
10409 ___pthread_get_cleanup_stack.
10410 * sysdeps/mach/hurd/localplt.data (ld.so): Make ref to __open optional.
10411 * sysdeps/mach/include/mach-shortcuts-hidden.h: New file.
10412 * mach/shortcut.awk: Make syscall stubs include
10413 <mach-shortcuts-hidden.h> and add hidden definition.
10414 * sysdeps/mach/include/mach.h: Include <mach-shortcuts-hidden.h>.
10415 (__mach_msg): Add hidden prototype.
10416 * mach/msg.c: Include <mach.h>.
10417 (__mach_msg): Add hidden definition.
10418 * mach/Makefile ($(mach-syscalls:%=$(objpfx))): Add hidden definition.
10419 * sysdeps/mach/include/mach/mach_traps.h (__mach_reply_port,
10420 __mach_thread_self, __mach_task_self, __mach_host_self, __swtch,
10421 __swtch_pri, __thread_switch, __evc_wait): Add hidden prototypes.
10422 * sysdeps/mach/hurd/localplt.data (siglongjmp, longjmp,
10423 __libc_lseek64, _IO_funlockfile): Whitelist PLT references.
10424 * sysdeps/hurd/include/hurd/signal.h (_hurd_self_sigstate): Add hidden
10425 prototype and definition.
10426 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Use
10427 hidden target for _hurd_self_sigstate.
10428
10429 2018-06-15 Joseph Myers <joseph@codesourcery.com>
10430
10431 [BZ #23007]
10432 * stdlib/tst-strtod-nan-sign-main.c: New file.
10433 * stdlib/tst-strtod-nan-sign.c: Likewise.
10434 * wcsmbs/tst-wcstod-nan-sign.c: Likewise.
10435 * stdlib/Makefile (tests): Add tst-strtod-nan-sign.
10436 ($(objpfx)tst-strtod-nan-sign): Depend on $(libm).
10437 * wcsmbs/Makefile (tests) Add tst-wcstod-nan-sign.
10438 ($(objpfx)tst-wcstod-nan-sign): Depend on $(libm).
10439
10440 2018-06-15 Herman ten Brugge <hermantenbrugge@home.nl>
10441
10442 [BZ #23007]
10443 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Return NaN of
10444 appropriate sign.
10445
10446 2018-06-14 Florian Weimer <fweimer@redhat.com>
10447
10448 [BZ #23290]
10449 * localedata/charmaps/IBM273: Map codepoint 0xbc to U+00AF, so
10450 that the result stays within the ISO-8859-1 range.
10451 * iconvdata/ibm273.c (HAS_HOLES): Define as 0 because all 256
10452 characters are defined in IBM273.
10453
10454 2018-06-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
10455
10456 * sysdeps/mach/include/mach/mach_traps.h (__mach_thread_self,
10457 __mach_task_self): Remove attribute_hidden.
10458
10459 2018-06-14 Joseph Myers <joseph@codesourcery.com>
10460
10461 * string/tester.c (test_strncat) [__GNUC_PREREQ (7, 0)]: Also
10462 ignore -Wrestrict for one test.
10463
10464 2018-06-14 Steve Ellcey <sellcey@caviumnetworks.com>
10465 Szabolcs Nagy <szabolcs.nagy@arm.com>
10466
10467 * sysdeps/unix/sysv/linux/aarch64/gettimeofday.c: New file.
10468
10469 2018-06-14 Florian Weimer <fweimer@redhat.com>
10470
10471 * scripts/update-abilist.sh: Accept empty list of files to patch.
10472
10473 2018-06-13 Samuel Thibault <samuel.thibault@ens-lyon.org>
10474
10475 * sysdeps/mach/hurd/i386/Makefile (test-xfail-check-abi-libhurduser,
10476 test-xfail-check-abi-libmachuser): Add.
10477 * sysdeps/mach/hurd/localplt.data (ld.so): Add __open64, rename
10478 __libc_read and __libc_write to __read and __write.
10479 * sysdeps/hurd/include/hurd/port.h: New file.
10480 * mach/mach/mach_traps.h (__mach_reply_port, __mach_thread_self,
10481 __mach_task_self, __mach_host_self, __swtch, __swtch_pri,
10482 __thread_switch, __evc_wait): Move declarations to...
10483 * sysdeps/mach/include/mach/mach_traps.h: ... new file, and add
10484 attribute_hidden.
10485 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Do not
10486 use PLT to call _hurd_self_sigstate.
10487
10488 2018-06-13 Joseph Myers <joseph@codesourcery.com>
10489
10490 [BZ #23279]
10491 * stdlib/strtod_l.c (round_and_return): Handle an exponent of
10492 MAX_EXP as overflowing.
10493 * stdlib/gen-tst-strtod-round.c (string_to_fp): Clear MPFR
10494 overflow flag.
10495 (round_str): Output also whether result overflows in each rounding
10496 mode.
10497 * stdlib/tst-strtod-round-data: Add more tests.
10498 * stdlib/tst-strtod-round-data.h: Regenerated.
10499 * stdlib/tst-strtod-round-skeleton.c (_XNTRY): Update comment.
10500 (TEST): Handle extra arguments for overflow flags.
10501 (struct test_overflow): New type.
10502 [!FE_OVERFLOW] (FE_OVERFLOW): Define to 0.
10503 (GEN_ONE_TEST): Clear all exceptions. Test overflow flag.
10504 (test_in_one_mode): Take argument with overflow information.
10505 (do_test): Update calls to test_in_one_mode.
10506
10507 2018-06-12 Carlos O'Donell <carlos@redhat.com>
10508
10509 * elf/dl-load (_dl_dst_substitute): Correct comment.
10510 (_dl_dst_count): Likewise.
10511
10512 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Call
10513 lll_futex_timed_wait.
10514
10515 2018-06-12 Joseph Myers <joseph@codesourcery.com>
10516
10517 [BZ #23277]
10518 * math/bits/mathcalls.h [__USE_ISOC99] (nan): Do not use __const__
10519 attribute.
10520 * math/test-nan-const.c: New file.
10521 * math/Makefile (tests): Add test-nan-const.
10522 (CFLAGS-test-nan-const.c): New variable.
10523
10524 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
10525
10526 * benchtests/scripts/compare_strings.py (process_results): Add
10527 funcs argument. Compare only functions which are selected.
10528 (main): Check if base function is among selected functions.
10529 Pass selected functions to process_results.
10530 (__main__): Add -f/--functions argument.
10531
10532 2018-06-12 Minfeng Kang <minfeng.kang@hxt-semitech.com>
10533 Hongbo Zhang <hongbo.zhang@linaro.org>
10534
10535 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): reuse
10536 __memcpy_falkor for phecda core.
10537 * sysdeps/aarch64/multiarch/memmove.c (libc_ifunc): reuse
10538 __memmove_falkor for phecda core.
10539 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc): reuse
10540 __memset_falkor for phecda core.
10541 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c: add MIDR entry
10542 for phecda core.
10543 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_PHECDA): add
10544 macro to identify phecda core.
10545
10546 2018-06-12 Carlos O'Donell <carlos@redhat.com>
10547 Andreas Schwab <schwab@suse.de>
10548 Dmitry V. Levin <ldv@altlinux.org>
10549 Florian Weimer <fweimer@redhat.com>
10550
10551 [BZ #23102]
10552 [BZ #21942]
10553 [BZ #18018]
10554 [BZ #23259]
10555 CVE-2011-0536
10556 * elf/dl-dst.h: Remove DL_DST_COUNT.
10557 * elf/dl-deps.c (expand_dst): Call _dl_dst_count.
10558 * elf/dl-load.c (is_trusted_path_normalize): Don't handle colons.
10559 (is_dst): Comment. Support ELF gABI.
10560 (_dl_dst_count): Comment. Simplify and count DSTs.
10561 (_dl_dst_substitute): Comment. Support __libc_enable_secure handling.
10562 (expand_dybamic_string_token): Comment. Call _dl_dst_count. Rename
10563 locals.
10564
10565 2018-06-12 Zack Weinberg <zackw@panix.com>
10566
10567 * elf/dl-load.c, elf/dl-misc.c, elf/dl-profile.c, elf/rtld.c
10568 * sysdeps/unix/sysv/linux/dl-sysdep.c
10569 Include not-cancel.h. Use __close_nocancel instead of __close,
10570 __open64_nocancel instead of __open, __read_nocancel instead of
10571 __libc_read, and __write_nocancel instead of __libc_write.
10572
10573 * csu/check_fds.c (check_one_fd)
10574 * sysdeps/posix/fdopendir.c (__fdopendir)
10575 * sysdeps/posix/opendir.c (__alloc_dir): Use __fcntl_nocancel
10576 instead of __fcntl and/or __libc_fcntl.
10577
10578 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np)
10579 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np)
10580 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system):
10581 Use __open64_nocancel instead of __open_nocancel.
10582
10583 * sysdeps/unix/sysv/linux/not-cancel.h: Move all of the
10584 hidden_proto declarations to the end and issue them if either
10585 IS_IN(libc) or IS_IN(rtld).
10586 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
10587 Add close_nocancel, fcntl_nocancel, nanosleep_nocancel,
10588 open_nocancel, open64_nocancel, openat_nocancel, pause_nocancel,
10589 read_nocancel, waitpid_nocancel, write_nocancel.
10590
10591 * io/Versions [GLIBC_PRIVATE]: Add __libc_fcntl,
10592 __fcntl_nocancel, __open64_nocancel, __write_nocancel.
10593 * posix/Versions: Add __nanosleep_nocancel, __pause_nocancel.
10594
10595 * nptl/pt-fcntl.c: New file.
10596 * nptl/Makefile (pthread-compat-wrappers): Remove fcntl.
10597 (libpthread-routines): Add pt-fcntl.
10598 * include/fcntl.h (__fcntl_nocancel_adjusted): New function.
10599 (__libc_fcntl): Remove attribute_hidden.
10600 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Call
10601 __fcntl_nocancel_adjusted, not fcntl_common.
10602 (__fcntl_nocancel): Move to new file fcntl_nocancel.c.
10603 (fcntl_common): Rename to __fcntl_nocancel_adjusted; also move
10604 to fcntl_nocancel.c.
10605 * sysdeps/unix/sysv/linux/fcntl_nocancel.c: New file.
10606 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Remove file.
10607 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
10608 Define FCNTL_ADJUST_CMD here, as a self-contained macro.
10609
10610 * sysdeps/unix/sysv/linux/close.c: Move __close_nocancel to...
10611 * sysdeps/unix/sysv/linux/close_nocancel.c: ...this new file.
10612 * sysdeps/unix/sysv/linux/nanosleep.c: Move __nanosleep_nocancel to...
10613 * sysdeps/unix/sysv/linux/nanosleep_nocancel.c: ...this new file.
10614 * sysdeps/unix/sysv/linux/open.c: Move __open_nocancel to...
10615 * sysdeps/unix/sysv/linux/open_nocancel.c: ...this new file.
10616 * sysdeps/unix/sysv/linux/open64.c: Move __open64_nocancel to...
10617 * sysdeps/unix/sysv/linux/open64_nocancel.c: ...this new file.
10618 * sysdeps/unix/sysv/linux/openat.c: Move __openat_nocancel to...
10619 * sysdeps/unix/sysv/linux/openat_nocancel.c: ...this new file.
10620 * sysdeps/unix/sysv/linux/openat64.c: Move __openat64_nocancel to...
10621 * sysdeps/unix/sysv/linux/openat64_nocancel.c: ...this new file.
10622 * sysdeps/unix/sysv/linux/pause.c: Move __pause_nocancel to...
10623 * sysdeps/unix/sysv/linux/pause_nocancel.c: ...this new file.
10624 * sysdeps/unix/sysv/linux/read.c: Move __read_nocancel to...
10625 * sysdeps/unix/sysv/linux/read_nocancel.c: ...this new file.
10626 * sysdeps/unix/sysv/linux/waitpid.c: Move __waitpid_nocancel to...
10627 * sysdeps/unix/sysv/linux/waitpid_nocancel.c: ...this new file.
10628 * sysdeps/unix/sysv/linux/write.c: Move __write_nocancel to...
10629 * sysdeps/unix/sysv/linux/write_nocancel.c: ...this new file.
10630
10631 * sysdeps/unix/sysv/linux/nios2/Makefile: Don't override
10632 libpthread-routines.
10633 * sysdeps/unix/sysv/linux/nios2/pt-vfork.S: New file which
10634 defines nothing.
10635
10636 * sysdeps/mach/hurd/dl-sysdep.c: Define __read instead of
10637 __libc_read, and __write instead of __libc_write. Define
10638 __open64 in addition to __open.
10639
10640 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
10641
10642 [BZ #23250]
10643 [BZ #10686]
10644 * sysdeps/i386/nptl/tls.h (tcbhead_t): Change __private_tm[4]
10645 to _private_tm[3] and add __glibc_reserved2.
10646 Add _Static_assert of offset of __private_ss == 0x30.
10647 * sysdeps/x86_64/nptl/tls.h: Add _Static_assert of offset of
10648 __private_ss == 0x40 for ILP32 and == 0x70 for LP64.
10649
10650 2018-06-12 Florian Weimer <fweimer@redhat.com>
10651
10652 x86: Make strncmp usable from rtld.
10653 * sysdeps/i386/i686/multiarch/strncmp-c.c: Only rename strncmp to
10654 __strncmp_ia32 if in libc (and not in rtld).
10655 * sysdeps/x86_64/multiarch/strncmp-sse2.S: Rename strcmp to
10656 strncmp if not in libc (and not to __strncmp_sse2).
10657
10658 2018-06-12 Rafal Luzynski <digitalfreak@lingonborough.com>
10659
10660 [BZ #23140]
10661 * localedata/locales/gd_GB (mon): Rename to...
10662 (alt_mon): This.
10663 (mon): Import from CLDR (genitive case).
10664 * localedata/locales/hsb_DE (mon): Rename to...
10665 (alt_mon): This.
10666 (mon): Import from CLDR (genitive case).
10667 * localedata/locales/wa_BE (mon): Rename to...
10668 (alt_mon): This.
10669 (mon): Add, fill with the proper genitive forms, but CLDR data
10670 is incomplete; completed according to the comments in this file.
10671 (d_t_fmt): Do not use "di" before the month name, no longer needed.
10672
10673 * localedata/locales/wa_BE (country_name): Reword
10674 "Beljike" -> "Beldjike".
10675
10676 2018-06-11 Joseph Myers <joseph@codesourcery.com>
10677
10678 [BZ #23272]
10679 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Start by handling all
10680 cases of non-finite arguments.
10681 * math/libm-test-fma.inc (fma_test_data): Add more tests.
10682
10683 2018-06-10 John David Anglin <danglin@gcc.gnu.org>
10684
10685 [BZ #23174]
10686 * sysdeps/unix/sysv/linux/hppa/Makefile: xfail check-execstack.
10687
10688 2018-06-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
10689
10690 [BZ #23264]
10691 * include/unistd.h (__execvpex): New prototype.
10692 * posix/Makefile (tests): Add tst-spawn4.
10693 (tests-internal): Add tst-spawn4-compat.
10694 * posix/execvpe.c (__execvpe_common, __execvpex): New functions.
10695 * posix/tst-spawn4-compat.c: New file.
10696 * posix/tst-spawn4.c: Likewise.
10697 * sysdeps/unix/sysv/linux/spawni.c (__spawni): Do not interpret invalid
10698 binaries as shell scripts.
10699 * sysdeps/posix/spawni.c (__spawni): Likewise.
10700
10701 2018-06-08 H.J. Lu <hongjiu.lu@intel.com>
10702
10703 [BZ #23145]
10704 * elf/Makefile (tests-special): Add $(objpfx)check-initfini.out.
10705 ($(all-built-dso:=.dynsym): New target.
10706 (common-generated): Add $(all-built-dso:$(common-objpfx)%=%.dynsym).
10707 ($(objpfx)check-initfini.out): New target.
10708 (generated): Add check-initfini.out.
10709 * scripts/check-initfini.awk: New file.
10710 * sysdeps/aarch64/crti.S (_init): Mark as hidden.
10711 (_fini): Likewise.
10712 * sysdeps/alpha/crti.S (_init): Mark as hidden.
10713 (_fini): Likewise.
10714 * sysdeps/arm/crti.S (_init): Mark as hidden.
10715 (_fini): Likewise.
10716 * sysdeps/hppa/crti.S (_init): Mark as hidden.
10717 (_fini): Likewise.
10718 * sysdeps/i386/crti.S (_init): Mark as hidden.
10719 (_fini): Likewise.
10720 * sysdeps/ia64/crti.S (_init): Mark as hidden.
10721 (_fini): Likewise.
10722 * sysdeps/m68k/crti.S (_init): Mark as hidden.
10723 (_fini): Likewise.
10724 * sysdeps/microblaze/crti.S (_init): Mark as hidden.
10725 (_fini): Likewise.
10726 * sysdeps/mips/mips32/crti.S (_init): Mark as hidden.
10727 (_fini): Likewise.
10728 * sysdeps/mips/mips64/n32/crti.S (_init): Mark as hidden.
10729 (_fini): Likewise.
10730 * sysdeps/mips/mips64/n64/crti.S (_init): Mark as hidden.
10731 (_fini): Likewise.
10732 * sysdeps/nios2/crti.S (_init): Mark as hidden.
10733 (_fini): Likewise.
10734 * sysdeps/powerpc/powerpc32/crti.S (_init): Mark as hidden.
10735 (_fini): Likewise.
10736 * sysdeps/powerpc/powerpc64/crti.S (_init): Mark as hidden.
10737 (_fini): Likewise.
10738 * sysdeps/s390/s390-32/crti.S (_init): Mark as hidden.
10739 (_fini): Likewise.
10740 * sysdeps/s390/s390-64/crti.S (_init): Mark as hidden.
10741 (_fini): Likewise.
10742 * sysdeps/sh/crti.S (_init): Mark as hidden.
10743 (_fini): Likewise.
10744 * sysdeps/sparc/crti.S (_init): Mark as hidden.
10745 (_fini): Likewise.
10746 * sysdeps/x86_64/crti.S (_init): Mark as hidden.
10747 (_fini): Likewise.
10748
10749 2018-06-06 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10750
10751 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c
10752 [__HAVE_FLOAT128_UNLIKE_LDBL] (TFtype, TF): Restrict TFtype
10753 and TF redirection to KFtype and KF only when the default
10754 long double type is not the IEEE 128-bit floating point type.
10755
10756 2018-06-05 Joseph Myers <joseph@codesourcery.com>
10757
10758 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DIT): New
10759 macro.
10760 (HWCAP_USCAT): Likewise.
10761 (HWCAP_ILRCPC): Likewise.
10762 (HWCAP_FLAGM): Likewise.
10763 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
10764 Increase to 28.
10765 (_dl_aarch64_cap_flags): Add new flag names.
10766
10767 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
10768 (MAP_FIXED_NOREPLACE): New macro.
10769 * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_MISC]
10770 (MAP_FIXED_NOREPLACE): Likewise.
10771 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC]
10772 (MAP_FIXED_NOREPLACE): Likewise.
10773 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
10774 (MAP_FIXED_NOREPLACE): Likewise.
10775 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
10776 (MAP_FIXED_NOREPLACE): Likewise.
10777 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
10778 (MAP_FIXED_NOREPLACE): Likewise.
10779 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
10780 (MAP_FIXED_NOREPLACE): Likewise.
10781 * sysdeps/unix/sysv/linux/mips/bits/mman.h [__USE_MISC]
10782 (MAP_FIXED_NOREPLACE): Likewise.
10783 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
10784 (MAP_FIXED_NOREPLACE): Likewise.
10785 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h [__USE_MISC]
10786 (MAP_FIXED_NOREPLACE): Likewise.
10787 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
10788 (MAP_FIXED_NOREPLACE): Likewise.
10789 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
10790 (MAP_FIXED_NOREPLACE): Likewise.
10791 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC]
10792 (MAP_FIXED_NOREPLACE): Likewise.
10793 * sysdeps/unix/sysv/linux/sparc/bits/mman.h [__USE_MISC]
10794 (MAP_FIXED_NOREPLACE): Likewise.
10795 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC]
10796 (MAP_FIXED_NOREPLACE): Likewise.
10797
10798 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
10799 version to 4.17.
10800
10801 2018-06-04 Joseph Myers <joseph@codesourcery.com>
10802
10803 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
10804 version to 4.17
10805
10806 2018-06-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
10807
10808 * bits/shm.h (struct shmid_ds): Make shm_segsz field size_t instead of
10809 int.
10810 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Likewise.
10811
10812 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10813
10814 * benchtests/scripts/compare_string.py: (process_results) Catch
10815 exception in non-existent base_func and catch exception in
10816 non-existent attribute.
10817 (parse_file) Catch exception if input file does not exist.
10818
10819 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10820
10821 * benchtests/scripts/compare_string.py: Add --no-diff and --no-header
10822 options to avoid diff calculation and omit header, respectively.
10823 (main): process --no-diff and --no-header
10824
10825 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10826 H.J. Lu <hongjiu.lu@intel.com>
10827
10828 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
10829 strcmp-avx2, strncmp-avx2, wcscmp-avx2, wcscmp-sse2, wcsncmp-avx2 and
10830 wcsncmp-sse2.
10831 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
10832 (__libc_ifunc_impl_list): Add tests for __strcmp_avx2,
10833 __strncmp_avx2, __wcscmp_avx2, __wcsncmp_avx2, __wcscmp_sse2
10834 and __wcsncmp_sse2.
10835 * sysdeps/x86_64/multiarch/strcmp.c (OPTIMIZE (avx2)):
10836 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
10837 AVX unaligned load is fast and vzeroupper is preferred.
10838 * sysdeps/x86_64/multiarch/strncmp.c: Likewise.
10839 * sysdeps/x86_64/multiarch/strcmp-avx2.S: New file.
10840 * sysdeps/x86_64/multiarch/strncmp-avx2.S: Likewise.
10841 * sysdeps/x86_64/multiarch/wcscmp-avx2.S: Likewise.
10842 * sysdeps/x86_64/multiarch/wcscmp-sse2.S: Likewise.
10843 * sysdeps/x86_64/multiarch/wcscmp.c: Likewise.
10844 * sysdeps/x86_64/multiarch/wcsncmp-avx2.S: Likewise.
10845 * sysdeps/x86_64/multiarch/wcsncmp-sse2.c: Likewise.
10846 * sysdeps/x86_64/multiarch/wcsncmp.c: Likewise.
10847 * sysdeps/x86_64/wcscmp.S (__wcscmp): Add alias only if __wcscmp
10848 is undefined.
10849
10850 2018-06-01 Florian Weimer <fweimer@redhat.com>
10851
10852 * sysdeps/i386/fpu/libm-test-ulps: Update with results from
10853 configuring with --disable-multi-arch, building with
10854 “-march=x86-64 -mtune=generic -mfpmath=sse” and running on a
10855 Haswell-era CPU.
10856
10857 2018-06-01 Florian Weimer <fweimer@redhat.com>
10858
10859 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update with
10860 results from building with “-march=x86-64 -mtune=generic
10861 -mfpmath=sse” and running on a Haswell-era CPU.
10862
10863 2018-06-01 Joseph Myers <joseph@codesourcery.com>
10864
10865 [BZ #18473]
10866 * soft-fp/sqrttf2.c: Remove file.
10867 * soft-fp/sqrtdf2.c: Move to ....
10868 * sysdeps/powerpc/nofpu/sqrtdf2.c: ... here. Include
10869 <shlib-compat.h>.
10870 (__sqrtdf2): Make conditional on
10871 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
10872 symbol.
10873 * soft-fp/sqrtsf2.c: Move to ....
10874 * sysdeps/powerpc/nofpu/sqrtsf2.c: ... here. Include
10875 <shlib-compat.h>.
10876 (__sqrtsf2): Make conditional on
10877 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
10878 symbol.
10879 * soft-fp/Makefile (gcc-single-routines): Remove sqrtsf2.
10880 (gcc-double-routines): Remove sqrtdf2.
10881 (gcc-quad-routines): Remove sqrttf2.
10882 * sysdeps/nios2/Makefile [$(subdir) = soft-fp] (sysdep_routines):
10883 Do not filter out sqrtsf2 and sqrtdf2.
10884 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
10885 (sysdep_routines): Add sqrtsf2 and sqrtdf2.
10886
10887 2018-06-01 Florian Weimer <fweimer@redhat.com>
10888
10889 * sysdeps/generic/libcidn.abilist: Remove file.
10890
10891 2018-06-01 Florian Weimer <fweimer@redhat.com>
10892
10893 [BZ #23236]
10894 * libio/strfile.h (struct _IO_str_fields): Rename members to
10895 discourage their use and add comment.
10896 (_IO_STR_DYNAMIC): Remove unused macro.
10897 * libio/strops.c (_IO_str_init_static_internal): Do not use
10898 callback pointers. Call malloc and free.
10899 (_IO_str_overflow): Do not use callback pointers. Call malloc
10900 and free.
10901 (enlarge_userbuf): Likewise.
10902 (_IO_str_finish): Call free.
10903 * libio/wstrops.c (_IO_wstr_init_static): Initialize
10904 _allocate_buffer_unused.
10905 (_IO_wstr_overflow): Do not use callback pointers. Call malloc
10906 and free.
10907 (enlarge_userbuf): Likewise.
10908 (_IO_wstr_finish): Call free.
10909 * debug/vasprintf_chk.c (__vasprintf_chk): Initialize
10910 _allocate_buffer_unused, _free_buffer_unused.
10911 * libio/memstream.c (__open_memstream): Likewise.
10912 * libio/vasprintf.c (_IO_vasprintf): Likewise.
10913 * libio/wmemstream.c (open_wmemstream): Likewise.
10914
10915 2018-05-30 Paul Pluzhnikov <ppluzhnikov@google.com>
10916
10917 * sysdeps/x86_64/fpu/libm-test-ulps (log_vlen8_avx2): Update for
10918 AMD Ryzen 7 1800X.
10919
10920 2018-05-30 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
10921
10922 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Makefile: New file to
10923 add w_sqrtf128-power9 and w_sqrtf128-ppc64le to libm-sysdep_routines.
10924 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-power9.c:
10925 New file.
10926 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-ppc64le.c:
10927 Likewise.
10928 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128.c: Likewise.
10929
10930 2018-05-29 Florian Weimer <fweimer@redhat.com>
10931
10932 * support/Makefile (libsupport-routines): Add
10933 xpthread_barrierattr_destroy, xpthread_barrierattr_init,
10934 xpthread_barrierattr_setpshared.
10935 * support/xpthread_barrierattr_destroy.c: New file.
10936 * support/xpthread_barrierattr_init.c: Likewise.
10937 * support/xpthread_barrierattr_setpshared.c: Likewise.
10938
10939 2018-05-29 H.J. Lu <hongjiu.lu@intel.com>
10940
10941 [BZ #23206]
10942 * elf/dl-reloc-static-pie.c (_dl_relocate_static_pie): Initialize
10943 _r_debug and update DT_DEBUG for debugger.
10944
10945 2018-05-29 Florian Weimer <fweimer@redhat.com>
10946
10947 * stdlib/Makefile (tst-strtod1i.out): Depend on generated locales.
10948 (tst-strtod5i.out): Likewise.
10949
10950 2018-05-25 Joseph Myers <joseph@codesourcery.com>
10951
10952 * sysdeps/sparc/sparc64/Implies: Remove sparc/sparc64/soft-fp.
10953 * sysdeps/sparc/sparc64/Makefile [$(subdir) = soft-fp]
10954 (sparc64-quad-routines): New variable. Moved from ....
10955 [$(subdir) = soft-fp] (sysdep_routines): Add
10956 $(sparc64-quad-routines). Moved from ....
10957 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp/. Moved from ....
10958 * sysdeps/sparc/sparc64/soft-fp/Makefile: ... here. Remove file.
10959 * sysdeps/sparc/sparc64/Versions (libc): Add GLIBC_2.2 symbols
10960 moved from ....
10961 * sysdeps/sparc/sparc64/soft-fp/Versions: ... here. Remove file.
10962 * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: Remove file.
10963 * sysdeps/sparc/sparc64/soft-fp/qp_add.c: Move to ....
10964 * sysdeps/sparc/sparc64/qp_add.c: ... here.
10965 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Move to ....
10966 * sysdeps/sparc/sparc64/qp_cmp.c: ... here.
10967 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Move to ....
10968 * sysdeps/sparc/sparc64/qp_cmpe.c: ... here.
10969 * sysdeps/sparc/sparc64/soft-fp/qp_div.c: Move to ....
10970 * sysdeps/sparc/sparc64/qp_div.c: ... here.
10971 * sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Move to ....
10972 * sysdeps/sparc/sparc64/qp_dtoq.c: ... here.
10973 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Move to ....
10974 * sysdeps/sparc/sparc64/qp_feq.c: ... here.
10975 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Move to ....
10976 * sysdeps/sparc/sparc64/qp_fge.c: ... here.
10977 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Move to ....
10978 * sysdeps/sparc/sparc64/qp_fgt.c: ... here.
10979 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Move to ....
10980 * sysdeps/sparc/sparc64/qp_fle.c: ... here.
10981 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Move to ....
10982 * sysdeps/sparc/sparc64/qp_flt.c: ... here.
10983 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Move to ....
10984 * sysdeps/sparc/sparc64/qp_fne.c: ... here.
10985 * sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Move to ....
10986 * sysdeps/sparc/sparc64/qp_itoq.c: ... here.
10987 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Move to ....
10988 * sysdeps/sparc/sparc64/qp_mul.c: ... here.
10989 * sysdeps/sparc/sparc64/soft-fp/qp_neg.S: Move to ....
10990 * sysdeps/sparc/sparc64/qp_neg.S: ... here.
10991 * sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Move to ....
10992 * sysdeps/sparc/sparc64/qp_qtod.c: ... here.
10993 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Move to ....
10994 * sysdeps/sparc/sparc64/qp_qtoi.c: ... here.
10995 * sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Move to ....
10996 * sysdeps/sparc/sparc64/qp_qtos.c: ... here.
10997 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Move to ....
10998 * sysdeps/sparc/sparc64/qp_qtoui.c: ... here.
10999 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Move to ....
11000 * sysdeps/sparc/sparc64/qp_qtoux.c: ... here.
11001 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Move to ....
11002 * sysdeps/sparc/sparc64/qp_qtox.c: ... here.
11003 * sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c: Move to ....
11004 * sysdeps/sparc/sparc64/qp_sqrt.c: ... here.
11005 * sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Move to ....
11006 * sysdeps/sparc/sparc64/qp_stoq.c: ... here.
11007 * sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Move to ....
11008 * sysdeps/sparc/sparc64/qp_sub.c: ... here.
11009 * sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Move to ....
11010 * sysdeps/sparc/sparc64/qp_uitoq.c: ... here.
11011 * sysdeps/sparc/sparc64/soft-fp/qp_util.c: Move to ....
11012 * sysdeps/sparc/sparc64/qp_util.c: ... here.
11013 * sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Move to ....
11014 * sysdeps/sparc/sparc64/qp_uxtoq.c: ... here.
11015 * sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Move to ....
11016 * sysdeps/sparc/sparc64/qp_xtoq.c: ... here.
11017 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Move to ....
11018 * sysdeps/sparc/sparc64/sfp-machine.h: ... here.
11019
11020 * sysdeps/sparc/sparc32/Implies: Remove sparc/sparc32/soft-fp.
11021 * sysdeps/sparc/sparc32/Makefile [$(subdir) = soft-fp]
11022 (sparc32-quad-routines): New variable. Moved from ....
11023 [$(subdir) = soft-fp] (sysdep_routines): Add
11024 $(sparc32-quad-routines). Moved from ....
11025 * sysdeps/sparc/sparc32/soft-fp/Makefile: ... here. Remove file.
11026 * sysdeps/sparc/sparc32/Versions (libc): Add GLIBC_2.4 symbols
11027 moved from ....
11028 * sysdeps/sparc/sparc32/soft-fp/Versions: ... here. Remove file.
11029 * sysdeps/sparc/sparc32/soft-fp/q_add.c: Move to ....
11030 * sysdeps/sparc/sparc32/q_add.c: ... here.
11031 * sysdeps/sparc/sparc32/soft-fp/q_cmp.c: Move to ....
11032 * sysdeps/sparc/sparc32/q_cmp.c: ... here.
11033 * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c: Move to ....
11034 * sysdeps/sparc/sparc32/q_cmpe.c: ... here.
11035 * sysdeps/sparc/sparc32/soft-fp/q_div.c: Move to ....
11036 * sysdeps/sparc/sparc32/q_div.c: ... here.
11037 * sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Move to ....
11038 * sysdeps/sparc/sparc32/q_dtoq.c: ... here.
11039 * sysdeps/sparc/sparc32/soft-fp/q_feq.c: Move to ....
11040 * sysdeps/sparc/sparc32/q_feq.c: ... here.
11041 * sysdeps/sparc/sparc32/soft-fp/q_fge.c: Move to ....
11042 * sysdeps/sparc/sparc32/q_fge.c: ... here.
11043 * sysdeps/sparc/sparc32/soft-fp/q_fgt.c: Move to ....
11044 * sysdeps/sparc/sparc32/q_fgt.c: ... here.
11045 * sysdeps/sparc/sparc32/soft-fp/q_fle.c: Move to ....
11046 * sysdeps/sparc/sparc32/q_fle.c: ... here.
11047 * sysdeps/sparc/sparc32/soft-fp/q_flt.c: Move to ....
11048 * sysdeps/sparc/sparc32/q_flt.c: ... here.
11049 * sysdeps/sparc/sparc32/soft-fp/q_fne.c: Move to ....
11050 * sysdeps/sparc/sparc32/q_fne.c: ... here.
11051 * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Move to ....
11052 * sysdeps/sparc/sparc32/q_itoq.c: ... here.
11053 * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Move to ....
11054 * sysdeps/sparc/sparc32/q_lltoq.c: ... here.
11055 * sysdeps/sparc/sparc32/soft-fp/q_mul.c: Move to ....
11056 * sysdeps/sparc/sparc32/q_mul.c: ... here.
11057 * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Move to ....
11058 * sysdeps/sparc/sparc32/q_neg.c: ... here.
11059 * sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Move to ....
11060 * sysdeps/sparc/sparc32/q_qtod.c: ... here.
11061 * sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Move to ....
11062 * sysdeps/sparc/sparc32/q_qtoi.c: ... here.
11063 * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Move to ....
11064 * sysdeps/sparc/sparc32/q_qtoll.c: ... here.
11065 * sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Move to ....
11066 * sysdeps/sparc/sparc32/q_qtos.c: ... here.
11067 * sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Move to ....
11068 * sysdeps/sparc/sparc32/q_qtou.c: ... here.
11069 * sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Move to ....
11070 * sysdeps/sparc/sparc32/q_qtoull.c: ... here.
11071 * sysdeps/sparc/sparc32/soft-fp/q_sqrt.c: Move to ....
11072 * sysdeps/sparc/sparc32/q_sqrt.c: ... here.
11073 * sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Move to ....
11074 * sysdeps/sparc/sparc32/q_stoq.c: ... here.
11075 * sysdeps/sparc/sparc32/soft-fp/q_sub.c: Move to ....
11076 * sysdeps/sparc/sparc32/q_sub.c: ... here.
11077 * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Move to ....
11078 * sysdeps/sparc/sparc32/q_ulltoq.c: ... here.
11079 * sysdeps/sparc/sparc32/soft-fp/q_util.c: Move to ....
11080 * sysdeps/sparc/sparc32/q_util.c: ... here.
11081 * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Move to ....
11082 * sysdeps/sparc/sparc32/q_utoq.c: ... here.
11083 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h: Move to ....
11084 * sysdeps/sparc/sparc32/sfp-machine.h: ... here.
11085
11086 2018-05-24 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11087 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
11088
11089 * sysdeps/powerpc/Implies: Removed. Previous contents copied to...
11090 * sysdeps/powerpc/powerpc32/Implies-after: ... here.
11091 * sysdeps/powerpc/powerpc64/be/Implies-after: ... here.
11092 * sysdeps/powerpc/powerpc64/le/Implies-before: ... and here.
11093
11094 2018-05-24 Joseph Myers <joseph@codesourcery.com>
11095
11096 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/Implies: Remove
11097 powerpc/soft-fp.
11098 * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
11099 Likewise.
11100 * sysdeps/powerpc/soft-fp/sfp-machine.h: Move to ....
11101 * sysdeps/powerpc/nofpu/sfp-machine.h: ... here.
11102
11103 2018-05-24 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
11104
11105 [BZ #23171]
11106 * math/math.h [C++] (iseqsig): Fix parameter type for the long
11107 double version.
11108
11109 2018-05-23 Joseph Myers <joseph@codesourcery.com>
11110
11111 * sysdeps/sh/Implies: Remove sh/soft-fp.
11112 * sysdeps/sh/soft-fp/sfp-machine.h: Move to ....
11113 * sysdeps/sh/sfp-machine.h: ... here.
11114
11115 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
11116
11117 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
11118 (__mempcpy_erms): Skip zero length.
11119 (__memmove_erms): Likewise.
11120 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
11121 (__memset_erms): Likewise.
11122
11123 2018-05-23 Joseph Myers <joseph@codesourcery.com>
11124
11125 * sysdeps/alpha/Implies: Remove alpha/soft-fp.
11126 * sysdeps/alpha/Makefile [$(subdir) = soft-fp] (sysdep_routines):
11127 Add functions moved from ....
11128 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp. Moved from ....
11129 * sysdeps/alpha/soft-fp/Makefile: ... here. Remove file.
11130 * sysdeps/alpha/Versions (libc): Add GLIBC_2.3.4 symbols moved
11131 from ....
11132 * sysdeps/alpha/soft-fp/Versions: ... here. Remove file.
11133 * sysdeps/alpha/soft-fp/e_sqrtl.c: Move to ....
11134 * sysdeps/alpha/e_sqrtl.c: ... here.
11135 * sysdeps/alpha/soft-fp/local-soft-fp.h: Move to ....
11136 * sysdeps/alpha/local-soft-fp.h: ... here.
11137 * sysdeps/alpha/soft-fp/ots_add.c: Move to ....
11138 * sysdeps/alpha/ots_add.c: ... here.
11139 * sysdeps/alpha/soft-fp/ots_cmp.c: Move to ....
11140 * sysdeps/alpha/ots_cmp.c: ... here.
11141 * sysdeps/alpha/soft-fp/ots_cmpe.c: Move to ....
11142 * sysdeps/alpha/ots_cmpe.c: ... here.
11143 * sysdeps/alpha/soft-fp/ots_cvtqux.c: Move to ....
11144 * sysdeps/alpha/ots_cvtqux.c: ... here.
11145 * sysdeps/alpha/soft-fp/ots_cvtqx.c: Move to ....
11146 * sysdeps/alpha/ots_cvtqx.c: ... here.
11147 * sysdeps/alpha/soft-fp/ots_cvttx.c: Move to ....
11148 * sysdeps/alpha/ots_cvttx.c: ... here.
11149 * sysdeps/alpha/soft-fp/ots_cvtxq.c: Move to ....
11150 * sysdeps/alpha/ots_cvtxq.c: ... here.
11151 * sysdeps/alpha/soft-fp/ots_cvtxt.c: Move to ....
11152 * sysdeps/alpha/ots_cvtxt.c: ... here.
11153 * sysdeps/alpha/soft-fp/ots_div.c: Move to ....
11154 * sysdeps/alpha/ots_div.c: ... here.
11155 * sysdeps/alpha/soft-fp/ots_mul.c: Move to ....
11156 * sysdeps/alpha/ots_mul.c: ... here.
11157 * sysdeps/alpha/soft-fp/ots_nintxq.c: Move to ....
11158 * sysdeps/alpha/ots_nintxq.c: ... here.
11159 * sysdeps/alpha/soft-fp/ots_sub.c: Move to ....
11160 * sysdeps/alpha/ots_sub.c: ... here.
11161 * sysdeps/alpha/soft-fp/sfp-machine.h: Move to ....
11162 * sysdeps/alpha/sfp-machine.h: ... here.
11163
11164 2018-05-23 Florian Weimer <fweimer@redhat.com>
11165
11166 [BZ #19728]
11167 [BZ #19729]
11168 [BZ #22247]
11169 CVE-2016-6261
11170 CVE-2016-6263
11171 CVE-2017-14062
11172 Switch to extern IDNA implementation (libidn2).
11173 * libidn: Remove subdirectory.
11174 * LICENSES: Do not mention licensing conditions for the removed
11175 libidn code.
11176 * config.h.in (HAVE_LIBIDN): Remove.
11177 * include/dlfcn.h (__libc_dlopen): Update comment.
11178 * include/idna.h: Remove file.
11179 * inet/Makefile (routines): Add idna.
11180 (tests-static, tests-internal): Add tst-idna_name_classify.
11181 (LOCALES): Generate locales for tests.
11182 (tst-idna_name_classify.out): Depend on generated locales.
11183 * inet/idna_name_classify.c: New file.
11184 * inet/tst-idna_name_classify.c: Likewise.
11185 * inet/net-internal.h (__idna_to_dns_encoding)
11186 (__idna_from_dns_encoding): Declare.
11187 * inet/net-internal.h (enum idna_name_classification): Define.
11188 (__idna_name_classify): Declare.
11189 * inet/Versions (GLIBC_PRIVATE): Add __idna_to_dns_encoding,
11190 __idna_from_dns_encoding.
11191 * inet/getnameinfo.c (DEPRECATED_NI_IDN): Define.
11192 (gni_host_inet_name): Call __idna_from_dns_encoding. Use punycode
11193 name as a fallback in case of encoding errors.
11194 (getnameinfo): Use DEPRECATED_NI_IDN.
11195 * inet/idna.c: New file.
11196 * nscd/gai.c: Do not include <libidn/idn-stub.c>.
11197 * resolv/Makefile (tests): Add tst-resolv-ai_idn,
11198 tst-resolv-ai_idn-latin1, tst-resolv-ai_idn-nolibidn2.
11199 (modules-names): Add tst-no-libidn2.
11200 (extra-test-objs): Add tst-no-libidn2.os.
11201 (LDFLAGS-tst-no-libidn2.so): Set soname.
11202 (LOCALES): Set, and generate locales.
11203 (tst-resolv-ai_idn): Link with -ldl -lresolv -lpthread.
11204 (tst-resolv-ai_idn-latin1): Likewise.
11205 (tst-resolv-ai_idn-nolibidn2): Likewise.
11206 (tst-resolv-ai_idn.out): Depend on locales.
11207 (tst-resolv-ai_idn-latin1.out): Depend on locales.
11208 (tst-resolv-ai_idn-nolibidn2.out): Depend on locales and
11209 tst-no-libidn2.so.
11210 * resolv/netdb.h (AI_IDN_ALLOW_UNASSIGNED)
11211 (AI_IDN_USE_STD3_ASCII_RULES, NI_IDN_ALLOW_UNASSIGNED)
11212 (NI_IDN_USE_STD3_ASCII_RULES): Deprecate.
11213 * resolv/tst-resolv-ai_idn.c: New file.
11214 * resolv/tst-resolv-ai_idn-latin1.c: Likewise.
11215 * resolv/tst-resolv-ai_idn-nolibidn2.c: Likewise.
11216 * resolv/tst-no-libidn2.c: Likewise.
11217 * support/support_format_addrinfo.c (format_ai_flags): Do not
11218 handle AI_IDN_ALLOW_UNASSIGNED, AI_IDN_USE_STD3_ASCII_RULES.
11219 * sysdeps/posix/getaddrinfo.c (DEPRECATED_AI_IDN): Define.
11220 (gaih_inet): Call __idna_to_dns_encoding and
11221 __idna_from_dns_encoding, and use the original (punycode) name if
11222 __idna_from_dns_encoding fails due to an encoding error.
11223 (getaddrinfo): Use DEPRECATED_AI_IDN.
11224 * sysdeps/unix/inet/Subdirs (libidn): Remove.
11225 * sysdeps/unix/inet/configure: Remove file.
11226 * sysdeps/unix/inet/configure.ac: Likewise.
11227
11228 2018-05-23 Florian Weimer <fweimer@redhat.com>
11229
11230 Implement allocate_once.
11231 * include/allocate_once.h: New file.
11232 * misc/allocate_once.c: Likewise.
11233 * misc/tst-allocate_once.c: Likewise.
11234 * misc/Makefile (routines): Add allocate_once.
11235 (tests-internal): Add tst-allocate_once.
11236 (generated): Add tst-allocate_once.mtrace,
11237 tst-allocate_once-mem.out.
11238 (tests-special): Add tst-allocate_once-mem.out.
11239 (tst-allocate_once-ENV): Set MALLOC_TRACE.
11240 (tst-allocate_once-mem.out): Call mtrace.
11241 * misc/Versions (GLIBC_PRIVATE): Add __libc_allocate_once_slow.
11242
11243 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
11244
11245 [BZ #23196]
11246 * string/test-memcpy.c (do_test1): New function.
11247 (test_main): Call it.
11248
11249 2018-05-23 Andreas Schwab <schwab@suse.de>
11250
11251 [BZ #23196]
11252 CVE-2018-11237
11253 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S
11254 (L(preloop_large)): Save initial destination pointer in %r11 and
11255 use it instead of %rax after the loop.
11256 * string/test-mempcpy.c (MIN_PAGE_SIZE): Define.
11257
11258 2018-05-22 Joseph Myers <joseph@codesourcery.com>
11259
11260 * sysdeps/aarch64/Implies: Remove aarch64/soft-fp.
11261 * sysdeps/aarch64/Makefile [$(subdir) = math] (CPPFLAGS): Add
11262 -I../soft-fp. Moved from ....
11263 * sysdeps/aarch64/soft-fp/Makefile: ... here. Remove file.
11264 * sysdeps/aarch64/soft-fp/e_sqrtl.c: Move to ....
11265 * sysdeps/aarch64/e_sqrtl.c: ... here.
11266 * sysdeps/aarch64/soft-fp/sfp-machine.h: Move to ....
11267 * sysdeps/aarch64/sfp-machine.h: ... here.
11268
11269 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Ignore
11270 -Wmaybe-uninitialized around access to fq[0].
11271 * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
11272 Likewise.
11273
11274 [BZ #18471]
11275 * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Use weak
11276 aliases for non-libc case of versioned symbols.
11277 * sysdeps/unix/sysv/linux/lseek64.c: Include <shlib-compat.h>.
11278 (llseek): Define as compat symbol if
11279 [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_28)], not as weak alias
11280 with link warning.
11281 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (llseek):
11282 Make into a compat symbol, disabled for minimum symbol version
11283 GLIBC_2.28 and later.
11284 * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Remove file.
11285
11286 2018-05-22 Florian Weimer <fweimer@redhat.com>
11287
11288 * sysdeps/i386/Makefile [$(subdir) == math] (sysdep-CFLAGS): Do
11289 not add -mpreferred-stack-boundary=4.
11290 [$(subdir) == csu] (sysdep-CFLAGS): Likewise.
11291 (stack-align-test-flags): Likewise.
11292 [$(subdir) == stdlib] (CFLAGS-exit.c, CFLAGS-cxa_finalize.c):
11293 Likewise.
11294 [$(subdir) == elf] (CFLAGS-dl-init.c, CFLAGS-dl-fini.c)
11295 (CFLAGS-dl-open.c, CFLAGS-dl-close.c, CFLAGS-dl-error.c): Likewise.
11296 [$(subdir) == dlfcn] (CFLAGS-dlopen.c, CFLAGS-dlopenold.c)
11297 (CFLAGS-dlclose.c, CFLAGS-dlerror.c): Likewise.
11298 * sysdeps/i386/nptl/Makefile [$(subdir) == nptl]
11299 (CFLAGS-pthread_create.c, CFLAGS-tst-align.c)
11300 (CFLAGS-tst-align2.c): Likewise.
11301
11302 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
11303
11304 * sysdeps/x86/cpu-features.h (bit_arch_Prefer_FSRM): New.
11305 (index_arch_Prefer_FSRM): Likewise.
11306 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
11307 Also check Prefer_FSRM.
11308 * sysdeps/x86_64/multiarch/ifunc-memmove.h (IFUNC_SELECTOR):
11309 Also return OPTIMIZE (erms) for Prefer_FSRM.
11310
11311 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
11312
11313 * sysdeps/x86/cpu-features.h (bit_cpu_FSRM): New.
11314 (index_cpu_FSRM): Likewise.
11315 (reg_FSRM): Likewise.
11316
11317 2018-05-18 Joseph Myers <joseph@codesourcery.com>
11318
11319 * math/gen-tgmath-tests.py: Import sys.
11320 (Tests.__init__): Initialize macros_seen.
11321 (Tests.add_tests): Add macro to macros_seen. Only generate tests
11322 if requested to do so for this macro.
11323 (Tests.add_all_tests): Take argument for macro for which to
11324 generate tests.
11325 (Tests.check_macro_list): New function.
11326 (main): Handle check-list argument and argument specifying macro
11327 for which to generate tests.
11328 * math/Makefile [PYTHON] (tgmath3-macros): New variable.
11329 [PYTHON] (tgmath3-macro-tests): Likewise.
11330 [PYTHON] (tests): Add $(tgmath3-macro-tests) not test-tgmath3.
11331 [PYTHON] (generated): Add $(addsuffix .c,$(tgmath3-macro-tests))
11332 not test-tgmath3.c.
11333 [PYTHON] (CFLAGS-test-tgmath3.c): Remove.
11334 [PYTHON] ($(tgmath3-macro-tests:%=$(objpfx)%.o): Add -fno-builtin
11335 to CFLAGS.
11336 [PYTHON] ($(objpfx)test-tgmath3.c): Replace rule by....
11337 [PYTHON] ($(foreach
11338 m,$(tgmath3-macros),$(objpfx)test-tgmath3-$(m).c): ... this. New
11339 rule.
11340 [PYTHON] (tests-special): Add
11341 $(objpfx)test-tgmath3-macro-list.out.
11342 [PYTHON] ($(objpfx)test-tgmath3-macro-list.out): New rule.
11343
11344 * sysdeps/unix/sysv/linux/syscalls.list (nfsservctl): Make into a
11345 compat symbol, disabled for minimum symbol version GLIBC_2.28 and
11346 later.
11347
11348 [BZ #22639]
11349 * time/tzset.c (SECSPERDAY): Cast to time_t.
11350 * time/tst-y2039.c: New file.
11351 * time/Makefile (tests): Add tst-y2039.
11352
11353 2018-05-17 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
11354
11355 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
11356 (PREFETCH_ONE_SET): Remove duplicate line.
11357
11358 2018-05-17 Florian Weimer <fweimer@redhat.com>
11359
11360 * sysdeps/generic/math-type-macros-double.h: Include
11361 <math-nan-payload-double.h> after <libm-alias-double.h>.
11362 * sysdeps/generic/math-type-macros-float.h: Include
11363 <math-nan-payload-float.h> after <libm-alias-float.h>.
11364 * sysdeps/generic/math-type-macros-float128.h: Include
11365 <math-nan-payload-float128.h> after <libm-alias-float128.h>.
11366 * sysdeps/generic/math-type-macros-ldouble.h: Include
11367 <math-nan-payload-ldouble.h> after <libm-alias-ldouble.h>.
11368
11369 2018-05-17 Andreas Schwab <schwab@suse.de>
11370
11371 * resolv/res_send.c (__res_context_send): Don't set errno when
11372 returing error after malloc failure.
11373
11374 2018-05-17 H.J. Lu <hongjiu.lu@intel.com>
11375
11376 * nptl/allocatestack.c (allocate_stack): Remove the
11377 !__ASSUME_PRIVATE_FUTEX paths.
11378 * nptl/descr.h (header): Remove the !__ASSUME_PRIVATE_FUTEX path.
11379 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
11380 Likewise.
11381 * sysdeps/i386/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Removed.
11382 * sysdeps/powerpc/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11383 * sysdeps/sh/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11384 * sysdeps/x86_64/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11385 * sysdeps/i386/nptl/tls.h: (tcbhead_t): Remve the
11386 !__ASSUME_PRIVATE_FUTEX path.
11387 * sysdeps/s390/nptl/tls.h (tcbhead_t): Likewise.
11388 * sysdeps/sparc/nptl/tls.h (tcbhead_t): Likewise.
11389 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
11390 * sysdeps/unix/sysv/linux/i386/lowlevellock.S: Remove the
11391 !__ASSUME_PRIVATE_FUTEX macros.
11392 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
11393 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
11394 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
11395 * sysdeps/unix/sysv/linux/kernel-features.h
11396 (__ASSUME_PRIVATE_FUTEX): Removed.
11397
11398 2018-05-17 Joseph Myers <joseph@codesourcery.com>
11399
11400 * math/Makefile (libm-narrow-fns): Add div.
11401 (libm-test-funcs-narrow): Likewise.
11402 * math/Versions (GLIBC_2.28): Add narrowing divide functions.
11403 * math/bits/mathcalls-narrow.h (div): Use __MATHCALL_NARROW.
11404 * math/gen-auto-libm-tests.c (test_functions): Add div.
11405 * math/math-narrow.h (CHECK_NARROW_DIV): New macro.
11406 (NARROW_DIV_ROUND_TO_ODD): Likewise.
11407 (NARROW_DIV_TRIVIAL): Likewise.
11408 * sysdeps/ieee754/float128/float128_private.h (__fdivl): New
11409 macro.
11410 (__ddivl): Likewise.
11411 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fdiv and
11412 ddiv.
11413 (CFLAGS-nldbl-ddiv.c): New variable.
11414 (CFLAGS-nldbl-fdiv.c): Likewise.
11415 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
11416 __nldbl_ddivl.
11417 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_ddivl): New
11418 prototype.
11419 * manual/arith.texi (Misc FP Arithmetic): Document fdiv, fdivl,
11420 ddivl, fMdivfN, fMdivfNx, fMxdivfN and fMxdivfNx.
11421 * math/auto-libm-test-in: Add tests of div.
11422 * math/auto-libm-test-out-narrow-div: New generated file.
11423 * math/libm-test-narrow-div.inc: New file.
11424 * sysdeps/i386/fpu/s_f32xdivf64.c: Likewise.
11425 * sysdeps/ieee754/dbl-64/s_f32xdivf64.c: Likewise.
11426 * sysdeps/ieee754/dbl-64/s_fdiv.c: Likewise.
11427 * sysdeps/ieee754/float128/s_f32divf128.c: Likewise.
11428 * sysdeps/ieee754/float128/s_f64divf128.c: Likewise.
11429 * sysdeps/ieee754/float128/s_f64xdivf128.c: Likewise.
11430 * sysdeps/ieee754/ldbl-128/s_ddivl.c: Likewise.
11431 * sysdeps/ieee754/ldbl-128/s_f64xdivf128.c: Likewise.
11432 * sysdeps/ieee754/ldbl-128/s_fdivl.c: Likewise.
11433 * sysdeps/ieee754/ldbl-128ibm/s_ddivl.c: Likewise.
11434 * sysdeps/ieee754/ldbl-128ibm/s_fdivl.c: Likewise.
11435 * sysdeps/ieee754/ldbl-96/s_ddivl.c: Likewise.
11436 * sysdeps/ieee754/ldbl-96/s_fdivl.c: Likewise.
11437 * sysdeps/ieee754/ldbl-opt/nldbl-ddiv.c: Likewise.
11438 * sysdeps/ieee754/ldbl-opt/nldbl-fdiv.c: Likewise.
11439 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
11440 * sysdeps/ieee754/soft-fp/s_fdiv.c: Likewise.
11441 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
11442 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11443 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
11444 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
11445 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
11446 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
11447 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
11448 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
11449 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
11450 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
11451 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
11452 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
11453 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
11454 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
11455 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
11456 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
11457 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
11458 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
11459 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
11460 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
11461 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
11462 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
11463 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
11464 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
11465 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
11466 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
11467 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
11468
11469 2018-05-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11470
11471 [BZ #23178]
11472 * nscd/nscd-client.h (sendfileall): Remove prototype.
11473 * nscd/connections.c [HAVE_SENDFILE] (sendfileall): Remove function.
11474 (handle_request): Use writeall instead of sendfileall.
11475 * nscd/aicache.c (addhstaiX): Likewise.
11476 * nscd/grpcache.c (cache_addgr): Likewise.
11477 * nscd/hstcache.c (cache_addhst): Likewise.
11478 * nscd/initgrcache.c (addinitgroupsX): Likewise.
11479 * nscd/netgroupcache.c (addgetnetgrentX, addinnetgrX): Likewise.
11480 * nscd/pwdcache.c (cache_addpw): Likewise.
11481 * nscd/servicescache.c (cache_addserv): Likewise.
11482 * sysdeps/unix/sysv/linux/Makefile [$(subdir) == nscd]
11483 (sysdep-CFLAGS): Remove -DHAVE_SENDFILE.
11484 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_SENDFILE):
11485 Remove define.
11486
11487 2018-05-16 H.J. Lu <hongjiu.lu@intel.com>
11488
11489 * sysdeps/x86_64/multiarch/strncat-c.c (STRNCAT_PRIMARY): Removed.
11490 Include <string/strncat.c>.
11491 * sysdeps/x86_64/multiarch/strncat.c (__strncat): New strong
11492 alias.
11493 (__GI___strncat): New hidden alias.
11494
11495 2018-05-16 Joseph Myers <joseph@codesourcery.com>
11496
11497 * sysdeps/mips/mips32/libm-test-ulps: Update.
11498 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
11499
11500 2018-05-16 Florian Weimer <fweimer@redhat.com>
11501
11502 * support/Makefile (libsupport-routines): Add support_quote_blob,
11503 support_test_compare_blob.
11504 (tests): Add tst-support_quote_blob, tst-test_compare_blob.
11505 * support/check.h (TEST_COMPARE_BLOB): Define.
11506 (support_test_compare_blob): Declare.
11507 * support/support.h (support_quote_blob): Declare.
11508 * support/support_quote_blob.c: New file.
11509 * support/support_test_compare_blob.c: Likewise.
11510 * support/tst-support_quote_blob.c: Likewise.
11511 * support/tst-test_compare_blob.c: Likewise.
11512
11513 2018-05-16 Florian Weimer <fweimer@redhat.com>
11514
11515 * stdlib/strtod_nan.c: Include <math-type-macros-double.h> instead
11516 of <strtod_nan_double.h>.
11517 * stdlib/strtod_nan_main.c (STRTOD_NAN): Use SET_NAN_PAYLOAD
11518 instead of SET_MANTISSA.
11519 * stdlib/strtof_nan.c: Include <math-type-macros-float.h> instead
11520 of include <strtod_nan_float.h>.
11521 * stdlib/strtold_nan.c: Include <math-type-macros-ldouble.h>
11522 instead of <strtod_nan_ldouble.h>.
11523 * stdlib/strtod_nan_double.h: Move to ...
11524 * sysdeps/generic/math-nan-payload-double.h: ... here.
11525 (FLOAT): Remove definition.
11526 (SET_MANTISSA): Rename to ...
11527 (SET_NAN_PAYLOAD): ... this.
11528 * stdlib/strtod_nan_float.h: Move to ...
11529 * sysdeps/generic/math-nan-payload-float.h: ... here.
11530 (FLOAT): Remove definition.
11531 (SET_MANTISSA): Rename to ...
11532 (SET_NAN_PAYLOAD): ... this.
11533 * sysdeps/generic/math-type-macros-double.h: Include
11534 <math-nan-payload-double.h>. Include <math/math-svid-compat.h>
11535 instead of <math-svid-compat.h>.
11536 * sysdeps/generic/math-type-macros-float.h: Include
11537 <math-nan-payload-float.h>. Include <math/math-svid-compat.h>
11538 instead of <math-svid-compat.h>.
11539 * sysdeps/generic/math-type-macros-float128.h: Include
11540 <math-nan-payload-float128.h>.
11541 * sysdeps/generic/math-type-macros-ldouble.h: Include
11542 <math-nan-payload-ldouble.h>. Include <math/math-svid-compat.h>
11543 instead of <math-svid-compat.h>.
11544 * sysdeps/generic/math-type-macros.h: Document SET_NAN_PAYLOAD and
11545 check for definition.
11546 * sysdeps/ieee754/float128/strtod_nan_float128.h: Move to ...
11547 * sysdeps/ieee754/float128/math-nan-payload-float128.h: ... here.
11548 Include <ieee754_float128.h>.
11549 (FLOAT): Remove definition.
11550 (SET_MANTISSA): Rename to ...
11551 (SET_NAN_PAYLOAD): ... this.
11552 * sysdeps/ieee754/float128/strtof128_nan.c: Include
11553 <math-type-macros-float128.h> instead of <strtod_nan_float128.h>.
11554 Do not include <float128_private.h>.
11555 * sysdeps/ieee754/float128/wcstof128_nan.c: Likewise.
11556 * sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h: Move to ...
11557 * sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h: ... here.
11558 (FLOAT): Remove definition.
11559 (SET_MANTISSA): Rename to ...
11560 (SET_NAN_PAYLOAD): ... this.
11561 * sysdeps/ieee754/ldbl-128ibm/strtod_nan_ldouble.h: Move to ...
11562 * sysdeps/ieee754/ldbl-128ibm/math-nan-payload-ldouble.h: ... here.
11563 (FLOAT): Remove definition.
11564 (SET_MANTISSA): Rename to ...
11565 (SET_NAN_PAYLOAD): ... this.
11566 * sysdeps/ieee754/ldbl-96/strtod_nan_ldouble.h: Move to ...
11567 * sysdeps/ieee754/ldbl-96/math-nan-payload-ldouble.h: ... here.
11568 (FLOAT): Remove definition.
11569 (SET_MANTISSA): Rename to ...
11570 (SET_NAN_PAYLOAD): ... this.
11571 * wcsmbs/wcstod_nan.c: Include <math-type-macros-double.h> instead
11572 of "../stdlib/strtod_nan_double.h".
11573 * wcsmbs/wcstof_nan.c: Include <math-type-macros-float.h> instead
11574 of "../stdlib/strtod_nan_float.h".
11575 * wcsmbs/wcstold_nan.c: Include <math-type-macros-ldouble.h>
11576 instead of "../stdlib/strtod_nan_ldouble.h".
11577 * manual/arith.texi (Parsing of Floats): Adjust comment.
11578
11579 2018-05-16 Joseph Myers <joseph@codesourcery.com>
11580
11581 * math/Makefile (libm-narrow-fns): Add mul.
11582 (libm-test-funcs-narrow): Likewise.
11583 * math/Versions (GLIBC_2.28): Add narrowing multiply functions.
11584 * math/bits/mathcalls-narrow.h (mul): Use __MATHCALL_NARROW.
11585 * math/gen-auto-libm-tests.c (test_functions): Add mul.
11586 * math/math-narrow.h (CHECK_NARROW_MUL): New macro.
11587 (NARROW_MUL_ROUND_TO_ODD): Likewise.
11588 (NARROW_MUL_TRIVIAL): Likewise.
11589 * soft-fp/op-common.h (FP_TRUNC_COOKED): Likewise.
11590 * sysdeps/ieee754/float128/float128_private.h (__fmull): New
11591 macro.
11592 (__dmull): Likewise.
11593 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fmul and
11594 dmul.
11595 (CFLAGS-nldbl-dmul.c): New variable.
11596 (CFLAGS-nldbl-fmul.c): Likewise.
11597 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
11598 __nldbl_dmull.
11599 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dmull): New
11600 prototype.
11601 * manual/arith.texi (Misc FP Arithmetic): Document fmul, fmull,
11602 dmull, fMmulfN, fMmulfNx, fMxmulfN and fMxmulfNx.
11603 * math/auto-libm-test-in: Add tests of mul.
11604 * math/auto-libm-test-out-narrow-mul: New generated file.
11605 * math/libm-test-narrow-mul.inc: New file.
11606 * sysdeps/i386/fpu/s_f32xmulf64.c: Likewise.
11607 * sysdeps/ieee754/dbl-64/s_f32xmulf64.c: Likewise.
11608 * sysdeps/ieee754/dbl-64/s_fmul.c: Likewise.
11609 * sysdeps/ieee754/float128/s_f32mulf128.c: Likewise.
11610 * sysdeps/ieee754/float128/s_f64mulf128.c: Likewise.
11611 * sysdeps/ieee754/float128/s_f64xmulf128.c: Likewise.
11612 * sysdeps/ieee754/ldbl-128/s_dmull.c: Likewise.
11613 * sysdeps/ieee754/ldbl-128/s_f64xmulf128.c: Likewise.
11614 * sysdeps/ieee754/ldbl-128/s_fmull.c: Likewise.
11615 * sysdeps/ieee754/ldbl-128ibm/s_dmull.c: Likewise.
11616 * sysdeps/ieee754/ldbl-128ibm/s_fmull.c: Likewise.
11617 * sysdeps/ieee754/ldbl-96/s_dmull.c: Likewise.
11618 * sysdeps/ieee754/ldbl-96/s_fmull.c: Likewise.
11619 * sysdeps/ieee754/ldbl-opt/nldbl-dmul.c: Likewise.
11620 * sysdeps/ieee754/ldbl-opt/nldbl-fmul.c: Likewise.
11621 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
11622 * sysdeps/ieee754/soft-fp/s_fmul.c: Likewise.
11623 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
11624 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11625 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
11626 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
11627 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
11628 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
11629 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
11630 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
11631 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
11632 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
11633 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
11634 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
11635 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
11636 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
11637 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
11638 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
11639 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
11640 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
11641 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
11642 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
11643 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
11644 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
11645 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
11646 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
11647 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
11648 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
11649 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
11650
11651 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11652
11653 * sysdeps/i386/crti.S (_init): Replace PREINIT_FUNCTION@PLT
11654 with *%eax in call.
11655
11656 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11657
11658 * sysdeps/i386/ldsodefs.h: Removed.
11659 * sysdeps/x86_64/ldsodefs.h: Moved to ...
11660 * sysdeps/x86/ldsodefs.h: This.
11661 (La_i86_regs): New.
11662 (La_i86_retval): Likewise.
11663 (ARCH_PLTENTER_MEMBERS): Add i86_gnu_pltenter.
11664 (ARCH_PLTEXIT_MEMBERS): i86_gnu_pltexit.
11665
11666 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11667
11668 * sysdeps/x86_64/multiarch/strlen-avx2.S (STRLEN): Remove the
11669 unnecessary testl.
11670
11671 2018-05-13 Alan Modra <amodra@gmail.com>
11672
11673 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Add
11674 R_PARISC_TLS_DTPOFF32 reloc addend.
11675
11676 2018-05-11 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11677
11678 * bits/floatn-common.h: Define __HAVE_FLOAT128_UNLIKE_LDBL.
11679 * math/math.h: Restrict the prototype definition for the functions
11680 issignaling(_Float128) and iszero(_Float128); and template
11681 __iseqsig_type<_Float128>, from __HAVE_DISTINCT_FLOAT128 to
11682 __HAVE_FLOAT128_UNLIKE_LDBL.
11683 * sysdeps/powerpc/bits/floatn.h [__HAVE_FLOAT128
11684 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
11685 && __LDBL_MANT_DIG__ == 113]: Use long double suffix for
11686 __f128() constants; define the type _Float128 as long double;
11687 and reuse long double in __CFLOAT128.
11688
11689 2018-05-11 Joseph Myers <joseph@codesourcery.com>
11690
11691 * sysdeps/generic/math_private.h: Do not include
11692 <math-barriers.h>.
11693 * stdlib/strtod_l.c: Include <math-barriers.h> instead of
11694 <math_private.h>.
11695 * math/fromfp.h: Include <math-barriers.h>.
11696 * math/math-narrow.h: Likewise.
11697 * math/s_nextafter.c: Likewise.
11698 * math/s_nexttowardf.c: Likewise.
11699 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
11700 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
11701 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
11702 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
11703 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
11704 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
11705 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
11706 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
11707 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
11708 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
11709 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
11710 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
11711 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
11712 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
11713 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
11714 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
11715 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
11716 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
11717 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
11718 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
11719 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
11720 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
11721 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
11722 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
11723 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
11724 * sysdeps/ieee754/k_standardl.c: Likewise.
11725 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
11726 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
11727 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
11728 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
11729 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
11730 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
11731 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
11732 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
11733 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
11734 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
11735 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
11736 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
11737 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
11738 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
11739 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
11740 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
11741 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
11742 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
11743 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
11744 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
11745 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Likewise.
11746 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c: Likewise.
11747
11748 2018-05-11 Florian Weimer <fweimer@redhat.com>
11749
11750 Use 64-bit epoch values in the time zone file parser.
11751 * include/time.h (internal_time_t): Define.
11752 (__tzfile_compute): Use it.
11753 * time/tzfile.c (struct leap): Use internal_time_t for epoch
11754 member.
11755 (transitions): Switch to internal_time_t.
11756 (__tzfile_read): Likewise. Remove code dealing with 4-byte time_t
11757 types.
11758 (__tzfile_compute): Use internal_time_t for timer argument. Check
11759 for truncation before calling __offtime.
11760
11761 2018-05-11 Florian Weimer <fweimer@redhat.com>
11762
11763 [BZ #23166]
11764 * include/rpc/clnt.h (rpc_createerr): Declare hidden alias.
11765 * include/rpc/svc.h (svc_pollfd, svc_max_pollfd, svc_fdset):
11766 Likewise.
11767 * sunrpc/rpc_common.c (svc_fdset, rpc_createerr, svc_pollfd)
11768 (svc_max_pollfd): Add nocommon attribute and hidden alias. Do not
11769 export without --enable-obsolete-rpc.
11770 * sunrpc/svcauth_des.c (svcauthdes_stats): Turn into compatibility
11771 symbol. This should not have been exported, ever.
11772
11773 2018-05-11 Rafal Luzynski <digitalfreak@lingonborough.com>
11774
11775 [BZ #23152]
11776 * localedata/locales/gd_GB (abmon): Fix typo in May:
11777 "Mhàrt" -> "Cèit". Adjust the comment according to the change.
11778
11779 2018-05-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
11780
11781 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
11782 Use multiple registers to copy data in loop tail.
11783
11784 * sysdeps/aarch64/multiarch/memmove_falkor.S
11785 (__memmove_falkor): Use multiple registers to move data in
11786 loop tail.
11787
11788 2018-05-10 Joseph Myers <joseph@codesourcery.com>
11789
11790 * math/math-underflow.h: New file.
11791 * sysdeps/generic/math_private.h: Do not include <float.h>.
11792 (fabs_tg): Remove macro. Moved to math-underflow.h.
11793 (min_of_type_f): Likewise.
11794 (min_of_type_): Likewise.
11795 (min_of_type_l): Likewise.
11796 (min_of_type_f128): Likewise.
11797 (min_of_type): Likewise.
11798 (math_check_force_underflow): Likewise.
11799 (math_check_force_underflow_nonneg): Likewise.
11800 (math_check_force_underflow_complex): Likewise.
11801 * math/e_exp2_template.c: Include <math-underflow.h>.
11802 * math/k_casinh_template.c: Likewise.
11803 * math/s_catan_template.c: Likewise.
11804 * math/s_catanh_template.c: Likewise.
11805 * math/s_ccosh_template.c: Likewise.
11806 * math/s_cexp_template.c: Likewise.
11807 * math/s_clog10_template.c: Likewise.
11808 * math/s_clog_template.c: Likewise.
11809 * math/s_csin_template.c: Likewise.
11810 * math/s_csinh_template.c: Likewise.
11811 * math/s_csqrt_template.c: Likewise.
11812 * math/s_ctan_template.c: Likewise.
11813 * math/s_ctanh_template.c: Likewise.
11814 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
11815 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
11816 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
11817 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
11818 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
11819 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
11820 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
11821 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
11822 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
11823 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
11824 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
11825 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
11826 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
11827 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
11828 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
11829 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
11830 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
11831 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
11832 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
11833 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
11834 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
11835 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
11836 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
11837 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
11838 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
11839 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
11840 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
11841 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
11842 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
11843 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
11844 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
11845 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
11846 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
11847 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
11848 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
11849 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
11850 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
11851 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
11852 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
11853 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
11854 * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
11855 * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
11856 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
11857 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
11858 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
11859 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
11860 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
11861 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
11862 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
11863 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
11864 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
11865 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
11866 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
11867 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
11868 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
11869 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
11870 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
11871 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
11872 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
11873 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
11874 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
11875 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
11876 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
11877 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
11878 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
11879 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
11880 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
11881 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
11882 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
11883 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
11884 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
11885 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
11886 * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
11887 * sysdeps/ieee754/ldbl-96/k_tanl.c: Likewise.
11888 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
11889 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
11890 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
11891 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
11892 * sysdeps/x86/fpu/powl_helper.c: Likewise.
11893 * sysdeps/ieee754/dbl-64/s_nextup.c: Include <float.h>.
11894 * sysdeps/ieee754/flt-32/s_nextupf.c: Likewise.
11895 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Likewise.
11896 * sysdeps/ieee754/ldbl-128ibm/s_nextupl.c: Likewise.
11897 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Likewise.
11898
11899 2018-05-09 Joseph Myers <joseph@codesourcery.com>
11900
11901 * sysdeps/generic/math-barriers.h: New file.
11902 * sysdeps/generic/math_private.h [!math_opt_barrier]
11903 (math_opt_barrier): Move to math-barriers.h.
11904 [!math_opt_barrier] (math_force_eval): Likewise.
11905 * sysdeps/aarch64/fpu/math-barriers.h: New file.
11906 * sysdeps/aarch64/fpu/math_private.h (math_opt_barrier): Move to
11907 math-barriers.h.
11908 (math_force_eval): Likewise.
11909 * sysdeps/alpha/fpu/math-barriers.h: New file.
11910 * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): Move to
11911 math-barriers.h.
11912 (math_force_eval): Likewise.
11913 * sysdeps/x86/fpu/math-barriers.h: New file.
11914 * sysdeps/i386/fpu/fenv_private.h (math_opt_barrier): Move to
11915 math-barriers.h.
11916 (math_force_eval): Likewise.
11917 * sysdeps/m68k/m680x0/fpu/math_private.h: Move to....
11918 * sysdeps/m68k/m680x0/fpu/math-barriers.h: ... here. Adjust
11919 multiple-include guard for rename.
11920 * sysdeps/powerpc/fpu/math-barriers.h: New file.
11921 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier): Move to
11922 math-barriers.h.
11923 (math_force_eval): Likewise.
11924
11925 2018-05-09 Paul Pluzhnikov <ppluzhnikov@google.com>
11926
11927 [BZ #22786]
11928 CVE-2018-11236
11929 * stdlib/canonicalize.c (__realpath): Fix overflow in path length
11930 computation.
11931 * stdlib/Makefile (test-bz22786): New test.
11932 * stdlib/test-bz22786.c: New test.
11933
11934 2018-05-09 Joseph Myers <joseph@codesourcery.com>
11935
11936 * include/math-narrow-eval.h: New file. Contents moved from ....
11937 * sysdeps/generic/math_private.h: ... here.
11938 (math_narrow_eval): Remove macro. Moved to math-narrow-eval.h.
11939 [FLT_EVAL_METHOD != 0] (excess_precision): Likewise.
11940 * math/s_fdim_template.c: Include <math-narrow-eval.h>.
11941 * stdlib/strtod_l.c: Likewise.
11942 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
11943 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
11944 * sysdeps/i386/fpu/s_fdim.c: Likewise.
11945 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
11946 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
11947 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
11948 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
11949 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
11950 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
11951 * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
11952 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
11953 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
11954 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
11955 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
11956 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
11957 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
11958 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
11959 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
11960 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
11961 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
11962 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
11963 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
11964 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
11965 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
11966 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
11967 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
11968 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
11969 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
11970 * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
11971
11972 2018-05-08 Andreas Schwab <schwab@suse.de>
11973
11974 * sysdeps/nptl/internaltypes.h: Fix comment.
11975
11976 2018-05-07 H.J. Lu <hongjiu.lu@intel.com>
11977
11978 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
11979 (MEMSET_SYMBOL (__memset, erms)): Mark the debugger symbol as
11980 hidden.
11981
11982 2018-05-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
11983
11984 * benchtests/bench-memcpy-walk.c (test_main): Move declaration
11985 of I into loop header.
11986 * benchtests/bench-memmove-walk.c
11987 (test_main): Likewise.
11988
11989 2018-05-07 Alexandre Oliva <oliva@gnu.org>
11990
11991 Revert:
11992 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
11993 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
11994
11995 2018-05-05 Paul Pluzhnikov <ppluzhnikov@google.com>
11996
11997 [BZ #20419]
11998 * elf/dl-load.c (open_verify): Fix stack overflow.
11999 * elf/Makefile (tst-big-note): New test.
12000 * elf/tst-big-note-lib.S: New.
12001 * elf/tst-big-note.c: New.
12002
12003 2018-05-04 Joseph Myers <joseph@codesourcery.com>
12004
12005 * scripts/abilist.awk: Ignore absolute symbols.
12006 * sysdeps/mach/hurd/i386/ld.abilist: Remove absolute symbols.
12007 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: Likewise.
12008 * sysdeps/mach/hurd/i386/libanl.abilist: Likewise.
12009 * sysdeps/mach/hurd/i386/libc.abilist: Likewise.
12010 * sysdeps/mach/hurd/i386/libcrypt.abilist: Likewise.
12011 * sysdeps/mach/hurd/i386/libdl.abilist: Likewise.
12012 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
12013 * sysdeps/mach/hurd/i386/libnsl.abilist: Likewise.
12014 * sysdeps/mach/hurd/i386/libpthread.abilist: Likewise.
12015 * sysdeps/mach/hurd/i386/libresolv.abilist: Likewise.
12016 * sysdeps/mach/hurd/i386/librt.abilist: Likewise.
12017 * sysdeps/mach/hurd/i386/libutil.abilist: Likewise.
12018 * sysdeps/unix/sysv/linux/aarch64/ld.abilist: Likewise.
12019 * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: Likewise.
12020 * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: Likewise.
12021 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Likewise.
12022 * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: Likewise.
12023 * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: Likewise.
12024 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
12025 * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: Likewise.
12026 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
12027 * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: Likewise.
12028 * sysdeps/unix/sysv/linux/aarch64/librt.abilist: Likewise.
12029 * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: Likewise.
12030 * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: Likewise.
12031 * sysdeps/unix/sysv/linux/alpha/ld.abilist: Likewise.
12032 * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: Likewise.
12033 * sysdeps/unix/sysv/linux/alpha/libanl.abilist: Likewise.
12034 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
12035 * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: Likewise.
12036 * sysdeps/unix/sysv/linux/alpha/libdl.abilist: Likewise.
12037 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
12038 * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: Likewise.
12039 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
12040 * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: Likewise.
12041 * sysdeps/unix/sysv/linux/alpha/librt.abilist: Likewise.
12042 * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: Likewise.
12043 * sysdeps/unix/sysv/linux/alpha/libutil.abilist: Likewise.
12044 * sysdeps/unix/sysv/linux/arm/ld.abilist: Likewise.
12045 * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: Likewise.
12046 * sysdeps/unix/sysv/linux/arm/libanl.abilist: Likewise.
12047 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
12048 * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: Likewise.
12049 * sysdeps/unix/sysv/linux/arm/libdl.abilist: Likewise.
12050 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
12051 * sysdeps/unix/sysv/linux/arm/libnsl.abilist: Likewise.
12052 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
12053 * sysdeps/unix/sysv/linux/arm/libresolv.abilist: Likewise.
12054 * sysdeps/unix/sysv/linux/arm/librt.abilist: Likewise.
12055 * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: Likewise.
12056 * sysdeps/unix/sysv/linux/arm/libutil.abilist: Likewise.
12057 * sysdeps/unix/sysv/linux/hppa/ld.abilist: Likewise.
12058 * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: Likewise.
12059 * sysdeps/unix/sysv/linux/hppa/libanl.abilist: Likewise.
12060 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
12061 * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: Likewise.
12062 * sysdeps/unix/sysv/linux/hppa/libdl.abilist: Likewise.
12063 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
12064 * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: Likewise.
12065 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
12066 * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: Likewise.
12067 * sysdeps/unix/sysv/linux/hppa/librt.abilist: Likewise.
12068 * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: Likewise.
12069 * sysdeps/unix/sysv/linux/hppa/libutil.abilist: Likewise.
12070 * sysdeps/unix/sysv/linux/i386/ld.abilist: Likewise.
12071 * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: Likewise.
12072 * sysdeps/unix/sysv/linux/i386/libanl.abilist: Likewise.
12073 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
12074 * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: Likewise.
12075 * sysdeps/unix/sysv/linux/i386/libdl.abilist: Likewise.
12076 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
12077 * sysdeps/unix/sysv/linux/i386/libnsl.abilist: Likewise.
12078 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
12079 * sysdeps/unix/sysv/linux/i386/libresolv.abilist: Likewise.
12080 * sysdeps/unix/sysv/linux/i386/librt.abilist: Likewise.
12081 * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: Likewise.
12082 * sysdeps/unix/sysv/linux/i386/libutil.abilist: Likewise.
12083 * sysdeps/unix/sysv/linux/ia64/ld.abilist: Likewise.
12084 * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: Likewise.
12085 * sysdeps/unix/sysv/linux/ia64/libanl.abilist: Likewise.
12086 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
12087 * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: Likewise.
12088 * sysdeps/unix/sysv/linux/ia64/libdl.abilist: Likewise.
12089 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
12090 * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: Likewise.
12091 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
12092 * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: Likewise.
12093 * sysdeps/unix/sysv/linux/ia64/librt.abilist: Likewise.
12094 * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: Likewise.
12095 * sysdeps/unix/sysv/linux/ia64/libutil.abilist: Likewise.
12096 * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: Likewise.
12097 * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
12098 Likewise.
12099 * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: Likewise.
12100 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
12101 * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: Likewise.
12102 * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: Likewise.
12103 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
12104 * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: Likewise.
12105 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
12106 * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: Likewise.
12107 * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: Likewise.
12108 * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: Likewise.
12109 * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: Likewise.
12110 * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: Likewise.
12111 * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
12112 Likewise.
12113 * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: Likewise.
12114 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
12115 * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: Likewise.
12116 * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: Likewise.
12117 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
12118 * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: Likewise.
12119 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
12120 * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: Likewise.
12121 * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: Likewise.
12122 * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: Likewise.
12123 * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: Likewise.
12124 * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Likewise.
12125 * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist: Likewise.
12126 * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Likewise.
12127 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
12128 * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Likewise.
12129 * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Likewise.
12130 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
12131 * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Likewise.
12132 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
12133 * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Likewise.
12134 * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Likewise.
12135 * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Likewise.
12136 * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Likewise.
12137 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
12138 * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: Likewise.
12139 * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
12140 Likewise.
12141 * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: Likewise.
12142 * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: Likewise.
12143 * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: Likewise.
12144 * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: Likewise.
12145 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
12146 * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: Likewise.
12147 * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: Likewise.
12148 * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: Likewise.
12149 * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: Likewise.
12150 * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: Likewise.
12151 * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: Likewise.
12152 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: Likewise.
12153 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: Likewise.
12154 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
12155 * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: Likewise.
12156 * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: Likewise.
12157 * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: Likewise.
12158 * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: Likewise.
12159 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
12160 * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
12161 Likewise.
12162 * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: Likewise.
12163 * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: Likewise.
12164 * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: Likewise.
12165 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
12166 * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: Likewise.
12167 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
12168 * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: Likewise.
12169 * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist: Likewise.
12170 * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: Likewise.
12171 * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: Likewise.
12172 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
12173 * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: Likewise.
12174 * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: Likewise.
12175 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
12176 * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: Likewise.
12177 * sysdeps/unix/sysv/linux/nios2/ld.abilist: Likewise.
12178 * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: Likewise.
12179 * sysdeps/unix/sysv/linux/nios2/libanl.abilist: Likewise.
12180 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
12181 * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: Likewise.
12182 * sysdeps/unix/sysv/linux/nios2/libdl.abilist: Likewise.
12183 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
12184 * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: Likewise.
12185 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
12186 * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: Likewise.
12187 * sysdeps/unix/sysv/linux/nios2/librt.abilist: Likewise.
12188 * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: Likewise.
12189 * sysdeps/unix/sysv/linux/nios2/libutil.abilist: Likewise.
12190 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: Likewise.
12191 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
12192 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: Likewise.
12193 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
12194 Likewise.
12195 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: Likewise.
12196 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: Likewise.
12197 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: Likewise.
12198 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: Likewise.
12199 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
12200 Likewise.
12201 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist:
12202 Likewise.
12203 * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: Likewise.
12204 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
12205 Likewise.
12206 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: Likewise.
12207 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
12208 Likewise.
12209 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
12210 Likewise.
12211 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: Likewise.
12212 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: Likewise.
12213 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
12214 Likewise.
12215 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
12216 Likewise.
12217 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist:
12218 Likewise.
12219 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: Likewise.
12220 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
12221 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
12222 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
12223 Likewise.
12224 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: Likewise.
12225 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: Likewise.
12226 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: Likewise.
12227 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
12228 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
12229 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist:
12230 Likewise.
12231 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: Likewise.
12232 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
12233 Likewise.
12234 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
12235 Likewise.
12236 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
12237 Likewise.
12238 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist:
12239 Likewise.
12240 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: Likewise.
12241 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: Likewise.
12242 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
12243 Likewise.
12244 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
12245 Likewise.
12246 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
12247 Likewise.
12248 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: Likewise.
12249 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
12250 * sysdeps/unix/sysv/linux/riscv/rv64/libBrokenLocale.abilist:
12251 Likewise.
12252 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
12253 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
12254 * sysdeps/unix/sysv/linux/riscv/rv64/libcrypt.abilist: Likewise.
12255 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
12256 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
12257 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
12258 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
12259 * sysdeps/unix/sysv/linux/riscv/rv64/libresolv.abilist: Likewise.
12260 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
12261 * sysdeps/unix/sysv/linux/riscv/rv64/libthread_db.abilist: Likewise.
12262 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
12263 * sysdeps/unix/sysv/linux/s390/libanl.abilist: Likewise.
12264 * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: Likewise.
12265 * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
12266 Likewise.
12267 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
12268 * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: Likewise.
12269 * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: Likewise.
12270 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
12271 * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: Likewise.
12272 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
12273 * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: Likewise.
12274 * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: Likewise.
12275 * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: Likewise.
12276 * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: Likewise.
12277 * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: Likewise.
12278 * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
12279 Likewise.
12280 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
12281 * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: Likewise.
12282 * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: Likewise.
12283 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
12284 * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: Likewise.
12285 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
12286 * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: Likewise.
12287 * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: Likewise.
12288 * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: Likewise.
12289 * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: Likewise.
12290 * sysdeps/unix/sysv/linux/sh/ld.abilist: Likewise.
12291 * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: Likewise.
12292 * sysdeps/unix/sysv/linux/sh/libanl.abilist: Likewise.
12293 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
12294 * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: Likewise.
12295 * sysdeps/unix/sysv/linux/sh/libdl.abilist: Likewise.
12296 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
12297 * sysdeps/unix/sysv/linux/sh/libnsl.abilist: Likewise.
12298 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
12299 * sysdeps/unix/sysv/linux/sh/libresolv.abilist: Likewise.
12300 * sysdeps/unix/sysv/linux/sh/librt.abilist: Likewise.
12301 * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: Likewise.
12302 * sysdeps/unix/sysv/linux/sh/libutil.abilist: Likewise.
12303 * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: Likewise.
12304 * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
12305 Likewise.
12306 * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: Likewise.
12307 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
12308 * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: Likewise.
12309 * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: Likewise.
12310 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
12311 * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: Likewise.
12312 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
12313 * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: Likewise.
12314 * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: Likewise.
12315 * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: Likewise.
12316 * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: Likewise.
12317 * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: Likewise.
12318 * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
12319 Likewise.
12320 * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: Likewise.
12321 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
12322 * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: Likewise.
12323 * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: Likewise.
12324 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
12325 * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: Likewise.
12326 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
12327 * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: Likewise.
12328 * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: Likewise.
12329 * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: Likewise.
12330 * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: Likewise.
12331 * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: Likewise.
12332 * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: Likewise.
12333 * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: Likewise.
12334 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
12335 * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: Likewise.
12336 * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: Likewise.
12337 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
12338 * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: Likewise.
12339 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
12340 * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: Likewise.
12341 * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: Likewise.
12342 * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: Likewise.
12343 * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: Likewise.
12344 * sysdeps/unix/sysv/linux/x86_64/libmvec.abilist: Likewise.
12345 * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: Likewise.
12346 * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: Likewise.
12347 * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: Likewise.
12348 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
12349 * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: Likewise.
12350 * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: Likewise.
12351 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
12352 * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: Likewise.
12353 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
12354 * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: Likewise.
12355 * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: Likewise.
12356 * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: Likewise.
12357 * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: Likewise.
12358
12359 2018-05-04 Stefan Liebler <stli@linux.vnet.ibm.com>
12360
12361 [BZ #23137]
12362 * sysdeps/nptl/lowlevellock.h (lll_wait_tid):
12363 Use atomic_load_acquire to load __tid.
12364
12365 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12366
12367 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S (__swapcontext):
12368 Restore the pointer into %rdx, after syscall and use %rdx,
12369 instead of %rsi, to restore context.
12370
12371 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12372
12373 * sysdeps/unix/sysv/linux/x86_64/setcontext.S (__setcontext):
12374 Pop the pointer into %rdx after syscall and use %rdx, instead
12375 of %rsi, to restore context.
12376
12377 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12378
12379 * nptl/pthread_create.c (START_THREAD_DEFN): Clear previous
12380 handlers after setjmp.
12381 * setjmp/longjmp.c (__libc_longjmp): Don't define alias if
12382 defined.
12383 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Include
12384 <libc-pointer-arith.h>.
12385 (_JUMP_BUF_SIGSET_BITS_PER_WORD): New.
12386 (_JUMP_BUF_SIGSET_NSIG): Changed to 96.
12387 (_JUMP_BUF_SIGSET_NWORDS): Changed to use ALIGN_UP and
12388 _JUMP_BUF_SIGSET_BITS_PER_WORD.
12389 * sysdeps/x86/Makefile (sysdep_routines): Add __longjmp_cancel.
12390 * sysdeps/x86/__longjmp_cancel.S: New file.
12391 * sysdeps/x86/longjmp.c: Likewise.
12392 * sysdeps/x86/nptl/pt-longjmp.c: Likewise.
12393
12394 2018-05-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12395
12396 * NEWS: Add ustat.h deprecation entry.
12397 * bits/ustat.h: Remove file.
12398 * misc/sys/ustat.h: Likewise.
12399 * misc/ustat.h: Likewise.
12400 * sysdeps/unix/sysv/linux/generic/ustat.c: Likewise.
12401 * misc/Makefile (headers): Remove ustat.h and sys/ustat.h.
12402 * misc/ustat.c (__ustat): Rename to __old_ustat and export only in
12403 compatibility mode.
12404 * sysdeps/unix/sysv/linux/ustat.c (__ustat): Likewise.
12405 * sysdeps/unix/sysv/linux/mips/ustat.c: Define DEV_TO_KDEV and use
12406 generic Linux implementation.
12407
12408 2018-04-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12409
12410 * math/w_exp_compat.c: Replace hidden_def with libm_hidden_def..
12411 * math/w_expl_compat.c: Likewise.
12412 * math/w_exp_template.c: Likewise. Remove hidden_def_x.
12413
12414 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
12415
12416 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
12417
12418 2018-04-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12419
12420 * sysdeps/unix/sysv/linux/arm/readahead.c: Remove file.
12421 * sysdeps/unix/sysv/linux/mips/mips32/readahead.c: Likewise.
12422 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (readahead):
12423 Remove.
12424 * sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list: Likewise.
12425 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
12426 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
12427 * sysdeps/unix/sysv/linux/readahead.c (__readahead): Assume
12428 __NR_readahead existence, and use INLINE_SYSCALL_CALL, __ALIGNMENT_ARG,
12429 and SYSCALL_LL64.
12430
12431 2018-04-27 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12432
12433 * math/e_exp2_template.c: Replace M_SUF (M_LN2) with M_MLIT (M_LN2).
12434
12435 * math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
12436 * math/w_asin_template.c: Likewise.
12437 * math/w_atanh_template.c: Likewise.
12438
12439 2018-04-27 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
12440
12441 * sysdeps/powerpc/preconfigure [machine == powerpc64] (machine): Define
12442 to powerpc/powerpc64/be for big-endian.
12443 [machine == powerpc64le]: Define to powerpc/powerpc64/le for
12444 little-endian.
12445
12446 * sysdeps/powerpc/powerpc64/power4/Implies: Move to powerpc64/be.
12447 * sysdeps/powerpc/powerpc64/power4/fpu/Implies: Likewise.
12448 * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: Likewise.
12449 * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: Likewise.
12450 * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
12451 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Likewise.
12452 * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: Likewise.
12453 * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: Likewise.
12454 * sysdeps/powerpc/powerpc64/power5/Implies: Likewise.
12455 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
12456 * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: Likewise.
12457 * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: Likewise.
12458 * sysdeps/powerpc/powerpc64/power6/Implies: Likewise.
12459 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: Likewise.
12460 * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: Likewise.
12461 * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: Likewise.
12462 * sysdeps/powerpc/powerpc64/power6x/Implies: Likewise.
12463 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Likewise.
12464 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Likewise.
12465 * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: Likewise.
12466 * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
12467 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
12468 * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: Likewise.
12469 * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: Likewise.
12470 * sysdeps/powerpc/powerpc64/power8/Implies: Likewise.
12471 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
12472 * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: Likewise.
12473 * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: Likewise.
12474 * sysdeps/powerpc/powerpc64/power9/Implies: Likewise.
12475 * sysdeps/powerpc/powerpc64/power9/fpu/Implies: Likewise.
12476 * sysdeps/powerpc/powerpc64/power9/fpu/multiarch/Implies: Likewise.
12477 * sysdeps/powerpc/powerpc64/power9/multiarch/Implies: Likewise.
12478
12479 * sysdeps/powerpc/powerpc64/be/power4/Implies: Move from powerpc64 and
12480 adjusted to imply powerpc64 and older processors on powerpc64/be.
12481 * sysdeps/powerpc/powerpc64/be/power4/fpu/Implies: Likewise.
12482 * sysdeps/powerpc/powerpc64/be/power4/fpu/multiarch/Implies: Likewise.
12483 * sysdeps/powerpc/powerpc64/be/power4/multiarch/Implies: Likewise.
12484 * sysdeps/powerpc/powerpc64/be/power5+/Implies: Likewise.
12485 * sysdeps/powerpc/powerpc64/be/power5+/fpu/Implies: Likewise.
12486 * sysdeps/powerpc/powerpc64/be/power5+/fpu/multiarch/Implies: Likewise.
12487 * sysdeps/powerpc/powerpc64/be/power5+/multiarch/Implies: Likewise.
12488 * sysdeps/powerpc/powerpc64/be/power5/Implies: Likewise.
12489 * sysdeps/powerpc/powerpc64/be/power5/fpu/Implies: Likewise.
12490 * sysdeps/powerpc/powerpc64/be/power5/fpu/multiarch/Implies: Likewise.
12491 * sysdeps/powerpc/powerpc64/be/power5/multiarch/Implies: Likewise.
12492 * sysdeps/powerpc/powerpc64/be/power6/Implies: Likewise.
12493 * sysdeps/powerpc/powerpc64/be/power6/fpu/Implies: Likewise.
12494 * sysdeps/powerpc/powerpc64/be/power6/fpu/multiarch/Implies: Likewise.
12495 * sysdeps/powerpc/powerpc64/be/power6/multiarch/Implies: Likewise.
12496 * sysdeps/powerpc/powerpc64/be/power6x/Implies: Likewise.
12497 * sysdeps/powerpc/powerpc64/be/power6x/fpu/Implies: Likewise.
12498 * sysdeps/powerpc/powerpc64/be/power6x/fpu/multiarch/Implies: Likewise.
12499 * sysdeps/powerpc/powerpc64/be/power6x/multiarch/Implies: Likewise.
12500 * sysdeps/powerpc/powerpc64/be/power7/Implies: Likewise.
12501 * sysdeps/powerpc/powerpc64/be/power7/fpu/Implies: Likewise.
12502 * sysdeps/powerpc/powerpc64/be/power7/fpu/multiarch/Implies: Likewise.
12503 * sysdeps/powerpc/powerpc64/be/power7/multiarch/Implies: Likewise.
12504 * sysdeps/powerpc/powerpc64/be/power8/Implies: Likewise.
12505 * sysdeps/powerpc/powerpc64/be/power8/fpu/Implies: Likewise.
12506 * sysdeps/powerpc/powerpc64/be/power8/fpu/multiarch/Implies: Likewise.
12507 * sysdeps/powerpc/powerpc64/be/power8/multiarch/Implies: Likewise.
12508 * sysdeps/powerpc/powerpc64/be/power9/Implies: Likewise.
12509 * sysdeps/powerpc/powerpc64/be/power9/fpu/Implies: Likewise.
12510 * sysdeps/powerpc/powerpc64/be/power9/fpu/multiarch/Implies: Likewise.
12511 * sysdeps/powerpc/powerpc64/be/power9/multiarch/Implies: Likewise.
12512
12513 * sysdeps/powerpc/powerpc64/970/Implies: Move to powerpc64/be.
12514 * sysdeps/powerpc/powerpc64/be/970/Implies: Move from powerpc64/be.
12515 * sysdeps/powerpc/powerpc64/be/a2/Implies: New file.
12516 * sysdeps/powerpc/powerpc64/be/cell/Implies: Likewise.
12517
12518 * sysdeps/powerpc/powerpc64/be/Implies: New file.
12519 * sysdeps/powerpc/powerpc64/be/fpu/Implies: Likewise.
12520 * sysdeps/powerpc/powerpc64/be/fpu/multiarch/Implies: Likewise.
12521 * sysdeps/powerpc/powerpc64/be/multiarch/Implies: Likewise.
12522
12523 * sysdeps/powerpc/powerpc64le/Implies: Move to powerpc64/le.
12524 * sysdeps/powerpc/powerpc64le/Implies-before: Likewise.
12525 * sysdeps/powerpc/powerpc64le/Makefile: Likewise.
12526 * sysdeps/powerpc/powerpc64le/configure: Likewise.
12527 * sysdeps/powerpc/powerpc64le/configure.ac: Likewise.
12528 * sysdeps/powerpc/powerpc64le/fpu/Implies: Likewise.
12529 * sysdeps/powerpc/powerpc64le/fpu/e_sqrtf128.c: Likewise.
12530 * sysdeps/powerpc/powerpc64le/fpu/multiarch/Implies: Likewise.
12531 * sysdeps/powerpc/powerpc64le/fpu/sfp-machine.h: Likewise.
12532 * sysdeps/powerpc/powerpc64le/multiarch/Implies: Likewise.
12533 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c: Likewise.
12534
12535 * sysdeps/powerpc/powerpc64/le/Implies: Move from powerpc64le.
12536 * sysdeps/powerpc/powerpc64/le/Implies-before: Likewise.
12537 * sysdeps/powerpc/powerpc64/le/Makefile: Likewise.
12538 * sysdeps/powerpc/powerpc64/le/configure: Likewise.
12539 * sysdeps/powerpc/powerpc64/le/configure.ac: Likewise.
12540 * sysdeps/powerpc/powerpc64/le/fpu/Implies: Likewise.
12541 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c: Likewise.
12542 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Implies: Likewise.
12543 * sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h: Likewise.
12544 * sysdeps/powerpc/powerpc64/le/multiarch/Implies: Likewise.
12545 * sysdeps/powerpc/powerpc64/le/power9/fpu/e_sqrtf128.c: Likewise.
12546
12547 * sysdeps/powerpc/powerpc64le/power7/Implies: Move to powerpc64/le.
12548 * sysdeps/powerpc/powerpc64le/power7/fpu/Implies: Likewise.
12549 * sysdeps/powerpc/powerpc64le/power7/fpu/multiarch/Implies: Likewise.
12550 * sysdeps/powerpc/powerpc64le/power7/multiarch/Implies: Likewise.
12551 * sysdeps/powerpc/powerpc64le/power8/Implies: Likewise.
12552 * sysdeps/powerpc/powerpc64le/power8/fpu/Implies: Likewise.
12553 * sysdeps/powerpc/powerpc64le/power8/fpu/multiarch/Implies: Likewise.
12554 * sysdeps/powerpc/powerpc64le/power8/multiarch/Implies: Likewise.
12555 * sysdeps/powerpc/powerpc64le/power9/Implies: Likewise.
12556 * sysdeps/powerpc/powerpc64le/power9/fpu/Implies: Likewise.
12557 * sysdeps/powerpc/powerpc64le/power9/fpu/multiarch/Implies: Likewise.
12558 * sysdeps/powerpc/powerpc64le/power9/multiarch/Implies: Likewise.
12559
12560 * sysdeps/powerpc/powerpc64/le/power7/Implies: Move from powerpc64le
12561 and adjusted to imply olders processors.
12562 * sysdeps/powerpc/powerpc64/le/power7/fpu/Implies: Likewise.
12563 * sysdeps/powerpc/powerpc64/le/power7/fpu/multiarch/Implies: Likewise.
12564 * sysdeps/powerpc/powerpc64/le/power7/multiarch/Implies: Likewise.
12565 * sysdeps/powerpc/powerpc64/le/power8/Implies: Likewise.
12566 * sysdeps/powerpc/powerpc64/le/power8/fpu/Implies: Likewise.
12567 * sysdeps/powerpc/powerpc64/le/power8/fpu/multiarch/Implies: Likewise.
12568 * sysdeps/powerpc/powerpc64/le/power8/multiarch/Implies: Likewise.
12569 * sysdeps/powerpc/powerpc64/le/power9/Implies: Likewise.
12570 * sysdeps/powerpc/powerpc64/le/power9/fpu/Implies: Likewise.
12571 * sysdeps/powerpc/powerpc64/le/power9/fpu/multiarch/Implies: Likewise.
12572 * sysdeps/powerpc/powerpc64/le/power9/multiarch/Implies: Likewise.
12573
12574 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/Implies: Move to
12575 powerpc64/le.
12576 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/float128-abi.h: Likewise.
12577 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/fpu/Implies: Likewise.
12578
12579 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/Implies: Move from
12580 powerpc64le.
12581 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/float128-abi.h: Likewise.
12582 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/fpu/Implies: Likewise.
12583
12584 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: Move to
12585 powerpc64/be.
12586 * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
12587 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: Likewise.
12588 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/fpu/Implies: Likewise.
12589
12590 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/970/Implies: Move from
12591 powerpc64 and adjusted.
12592 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/a2/Implies: Likewise.
12593 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/Implies: Likewise.
12594 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/fpu/Implies:
12595 Likewise.
12596
12597 2018-04-27 Joseph Myers <joseph@codesourcery.com>
12598
12599 * sysdeps/tile: Remove.
12600 * sysdeps/unix/sysv/linux/tile: Likewise.
12601 * README (tilegx-*-linux-gnu): Remove from list of supported
12602 configurations.
12603 * manual/contrib.texi (Contributors): Mention Chris Metcalf's
12604 contribution of support for generic Linux kernel syscall
12605 interface.
12606 * scripts/build-many-glibcs.py (Context.add_all_configs): Remove
12607 tilegx configurations.
12608 (Config.install_linux_headers): Do not handle tile.
12609 * sysdeps/unix/sysv/linux/aarch64/ldsodefs.h: Do not mention Tile
12610 in comment.
12611 * sysdeps/unix/sysv/linux/nios2/Makefile: Likewise.
12612 * sysdeps/unix/sysv/linux/posix_fadvise.c: Likewise.
12613 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
12614 conditional undefine and redefine.
12615 * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not mention Tile
12616 in comment.
12617 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
12618 conditional undefine and redefine.
12619
12620 2018-04-26 Aurelien Jarno <aurelien@aurel32.net>
12621
12622 * signal/tst-sigaction.c: New file to test BZ #23069.
12623 * signal/Makefile (tests): Fix indentation. Add tst-sigaction.
12624
12625 2018-04-26 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12626
12627 [BZ #22766]
12628 * include/dlfcn.h [__libc_dl_open]: Replace RTLD_LAZY with RTLD_NOW.
12629 * sysdeps/gnu/unwind-resume.c (__lib_gcc_s_init): Replace
12630 __libc_dlopen_mode() using RTLD_NOW with __libc_dlopen.
12631 * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
12632
12633 2018-04-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12634
12635 * sysdeps/unix/sysv/linux/getdirentries.c (getdirentries): Build iff
12636 _DIRENT_MATCHES_DIRENT64 is not defined.
12637 * sysdeps/unix/sysv/linux/getdirentries64.c (getdirentries64): Open
12638 implementation and alias to getdirentries if _DIRENT_MATCHES_DIRENT64
12639 is defined.
12640 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: Remove file.
12641 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: Remove file.
12642
12643 2018-04-25 Joseph Myers <joseph@codesourcery.com>
12644
12645 * scripts/build-many-glibcs.py (Context.checkout): Default GCC
12646 version to GCC 8 branch.
12647
12648 2018-04-24 Joseph Myers <joseph@codesourcery.com>
12649
12650 * sysdeps/mach/hurd/dl-sysdep.c: Include <not-errno.h>.
12651 (check_no_hidden): Use type of original function when declaring
12652 alias.
12653
12654 * sysdeps/unix/sysv/linux/sys/ptrace.h
12655 (PTRACE_SECCOMP_GET_METADATA): New enum value and macro.
12656 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h
12657 (struct __ptrace_seccomp_metadata): New type.
12658 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
12659 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12660 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h
12661 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12662 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h
12663 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12664 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
12665 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12666 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h
12667 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12668 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h
12669 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12670 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h
12671 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12672 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h
12673 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12674
12675 2018-04-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12676
12677 * dirent/alphasort.c (alphasort): Build iff _DIRENT_MATCHES_DIRENT64 is
12678 defined.
12679 * dirent/versionsort.c (versionsort): Likewise.
12680 * dirent/alphasort64.c (alphasort64): Build regardless and alias to
12681 alphasort if _DIRENT_MATCHES_DIRENT64 is defined.
12682 * dirent/versionsort64.c (versionsort64): Likewise.
12683 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Remove file.
12684 * sysdeps/unix/sysv/linux/arm/alphasort64.c: Likewise.
12685 * sysdeps/unix/sysv/linux/arm/versionsort64.c: Likewise.
12686 * sysdeps/unix/sysv/linux/m68k/alphasort64.c: Likewise.
12687 * sysdeps/unix/sysv/linux/m68k/versionsort64.c: Likewise.
12688 * sysdeps/unix/sysv/linux/s390/s390-32/alphasort64.c: Likewise.
12689 * sysdeps/unix/sysv/linux/s390/s390-32/versionsort64.c: Likewise.
12690 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
12691 * sysdeps/unix/sysv/linux/alphasort64.c: New file.
12692 * sysdeps/unix/sysv/linux/versionsort64.c: Likewise.
12693 * sysdeps/unix/sysv/linux/powerpc/powerpc32/alphasort64.c: Likewise.
12694 * sysdeps/unix/sysv/linux/powerpc/powerpc32/versionsort64.c: Likewise.
12695 * sysdeps/unix/sysv/linux/sparc/sparc32/alphasort64.c: Likewise.
12696 * sysdeps/unix/sysv/linux/sparc/sparc32/versionsort64.c: Likewise.
12697
12698 2018-04-23 Joseph Myers <joseph@codesourcery.com>
12699
12700 * elf/elf.h (NT_PPC_PKEY): New macro.
12701
12702 2018-04-23 Dragan Stanojevic - Nevidljivi <invisible@hidden-city.net>
12703
12704 [BZ #23094]
12705 * localedata/locales/hr_HR: fix thousands_sep and
12706 mon_thousands_sep
12707
12708 2018-04-20 Joseph Myers <joseph@codesourcery.com>
12709
12710 * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_MISC]
12711 (XTABS): Define to TAB3.
12712
12713 2018-04-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12714
12715 * sysdeps/hppa/fpu/libm-test-ulps: Update.
12716
12717 * dirent/scandir-tail-common.c: New file.
12718 * dirent/scandir-tail.c: Use scandir-tail-common.c.
12719 (__scandir_tail): Build iff _DIRENT_MATCHES_DIRENT64 is not defined.
12720 * dirent/scandir.c: Use scandir-tail-common.c.
12721 * dirent/scandirat.c: Likewise.
12722 * dirent/scandir64-tail.c: Use scandir-tail-common.c.
12723 * dirent/scandir64.c (scandir64): Always build and alias to scandir
12724 if _DIRENT_MATCHES_DIRENT64 is defined.
12725 * dirent/scandirat64.c (scandirat64): Likewise.
12726 * include/dirent.h (__scandir_tail): Only define iff
12727 _DIRENT_MATCHES_DIRENT64 is not defined.
12728 (__scandir64_tail): Define regardless.
12729 (__scandirat, scandirat64): Remove libc_hidden_proto.
12730 * sysdeps/unix/sysv/linux/arm/scandir64.c: Remove file.
12731 * sysdeps/unix/sysv/linux/m68k/scandir64.c: Likewise.
12732 * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Likewise.
12733 * sysdeps/unix/sysv/linux/s390/s390-32/scandir64.c: Likewise.
12734 * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
12735 * sysdeps/unix/sysv/linux/sparc/sparc32/scandir64.c: Likewise.
12736 * sysdeps/unix/sysv/linux/scandir64.c: New file.
12737
12738 2018-04-20 Joseph Myers <joseph@codesourcery.com>
12739
12740 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_ASIMDFHM):
12741 New macro.
12742 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
12743 Increase to 24.
12744 (_dl_aarch64_cap_flags): Add asimdfhm.
12745
12746 2018-04-19 Chung-Lin Tang <cltang@codesourcery.com>
12747
12748 * sysdeps/nios2/libm-test-ulps: Update.
12749
12750 2018-04-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12751
12752 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c (__getdents64):
12753 Only alias to __getdents for _DIRENT_MATCHES_DIRENT64.
12754
12755 * sysdeps/unix/sysv/linux/alpha/getdents.c: Add comments with alpha
12756 requirements.
12757 (_DIRENT_MATCHES_DIRENT64): Undef
12758 * sysdeps/unix/sysv/linux/alpha/getdents64.c: Likewise.
12759 * sysdeps/unix/sysv/linux/arm/getdents64.c: Remove file.
12760 * sysdeps/unix/sysv/linux/generic/getdents.c: Likewise.
12761 * sysdeps/unix/sysv/linux/generic/getdents64.c: Likewise.
12762 * sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c: Likewise.
12763 * sysdeps/unix/sysv/linux/getdents.c: Simplify implementation by
12764 use getdents64 syscalls as base.
12765 * sysdeps/unix/sysv/linux/getdents64.c: Likewise and add compatibility
12766 symbol if required.
12767 * sysdeps/unix/sysv/linux/hppa/getdents64.c: Likewise.
12768 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
12769 * sysdeps/unix/sysv/linux/m68k/getdents64.c: Likewise.
12770 * sysdeps/unix/sysv/linux/powerpc/getdents64.c: Likewise.
12771 * sysdeps/unix/sysv/linux/s390/s390-32/getdents64.c: Likewise.
12772 * sysdeps/unix/sysv/linux/sparc/sparc32/getdents64.c: Likewise.
12773 * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
12774 * sysdeps/unix/sysv/linux/wordsize-64/getdents64.c: Likewise.
12775 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
12776 (__get_clockfreq_via_proc_openprom): Use __getdents64.
12777 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c: New file.
12778
12779 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
12780
12781 * scripts/test_printers_common.py (init_test): Disable lock elision.
12782
12783 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
12784
12785 * math/test-tgmath.c (count_double, count_float,
12786 count_ldouble, count_cdouble, count_cfloat,
12787 count_cldouble): Use volatile int.
12788
12789 2018-04-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
12790
12791 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
12792 (conformtest-xfail-conds): Add i386-gnu.
12793 * conform/data/fcntl.h-data (flock.l_type, flock.l_whence): XFAIL on
12794 i386-gnu.
12795 * conform/data/sys/ipc.h-data (ipc_perm.uid, ipc_perm.gid,
12796 ipc_perm.cuid, ipc_perm.cgid): Likewise.
12797 * conform/data/sys/msg.h-data (msqid_ds.msg_lspid,
12798 msqid_ds.msg_lrpid): Likewise.
12799 * conform/data/sys/shm.h-data (shmid_ds.shm_lpid, shmid_ds.shm_cpid):
12800 Likewise.
12801 * conform/data/sys/stat.h-data (stat.st_dev): Likewise.
12802 * conform/data/sys/statvfs.h-data (statvfs.f_fsid): Likewise.
12803 * sysdeps/mach/hurd/bits/statvfs.h (struct statvfs): Make f_bsize,
12804 f_namemax, f_frsize, and f_flag fields unsigned long int instead of
12805 unsigned int.
12806 (struct statvfs64): Likewise.
12807 * sysdeps/mach/hurd/bits/statfs.h (struct statfs, struct statfs64):
12808 Likewise.
12809 * bits/in.h [!__USE_MISC]: Do not define struct ip_opts.
12810 * conform/data/netinet/in.h-data: Allow sin_ and sin6_ prefix.
12811 * sysdeps/gnu/bits/msq.h (struct msqid_ds): Use __wait_queue struct
12812 instead of wait_queue.
12813 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Use __vm_area_struct
12814 instead of vm_area_struct.
12815 * bits/sched.h: Include <bits/types/struct_sched_param.h> and move
12816 struct sched_param definition to it.
12817 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
12818 * bits/types/struct_sched_param.h: New file.
12819 * sysdeps/htl/bits/types/struct___pthread_attr.h: Include
12820 <bits/types/struct_sched_param.h> instead of <sched.h>.
12821 * posix/Makefile (headers): Add bits/types/struct_sched_param.h.
12822 * sysdeps/pthread/bits/types/sigevent_t.h: New file, based on the
12823 generic version but include <bits/pthreadtypes.h> to make struct
12824 sigevent's sigev_notify_attributes field a pthread_attr_t*.
12825 * bits/types/siginfo_t.h: Remove siginfo struct name, unused and
12826 non-compliant.
12827 * bits/termios.h [__USE_XOPEN || __USE_XOPEN2K8] (IXANY): Define.
12828 [__USE_XOPEN && !__USE_XOPEN2K] (IUCLC, OLCUC): Define.
12829 [__USE_XOPEN] (OFDEL): New macro.
12830 [__USE_XOPEN && !__USE_XOPEN2K] (XCASE): New macro.
12831 * bits/resource.h (RLIM_SAVED_MAX, RLIM_SAVED_CUR): New macros.
12832 * sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden
12833 prototypes.
12834 * sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise.
12835 * sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
12836 * sysdeps/arm/sys/ucontext.h: Remove fpregset struct name, unused and
12837 non-compliant.
12838 * sysdeps/i386/sys/ucontext.h: Likewise.
12839 * sysdeps/m68k/sys/ucontext.h: Likewise.
12840 * sysdeps/mips/sys/ucontext.h: Likewise.
12841 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Likewise.
12842 * sysdeps/mach/hurd/i386/Makefile
12843 (test-xfail-POSIX/fcntl.h/conform): Add.
12844 (test-xfail-POSIX/signal.h/conform): Add.
12845 (test-xfail-POSIX/semaphore.h/conform): Add.
12846 (test-xfail-POSIX/regex.h/conform): Add.
12847 (test-xfail-POSIX/aio.h/conform): Add.
12848 (test-xfail-POSIX/mqueue.h/conform): Add.
12849 (test-xfail-POSIX/sys/types.h/conform): Add.
12850 (test-xfail-UNIX98/fcntl.h/conform): Add.
12851 (test-xfail-UNIX98/netdb.h/conform): Add.
12852 (test-xfail-UNIX98/signal.h/conform): Add.
12853 (test-xfail-UNIX98/semaphore.h/conform): Add.
12854 (test-xfail-UNIX98/regex.h/conform): Add.
12855 (test-xfail-UNIX98/aio.h/conform): Add.
12856 (test-xfail-UNIX98/ftw.h/conform): Add.
12857 (test-xfail-UNIX98/mqueue.h/conform): Add.
12858 (test-xfail-UNIX98/netinet/in.h/conform): Add.
12859 (test-xfail-UNIX98/sys/wait.h/conform): Add.
12860 (test-xfail-UNIX98/sys/sem.h/conform): Add.
12861 (test-xfail-UNIX98/sys/uio.h/conform): Add.
12862 (test-xfail-UNIX98/sys/socket.h/conform): Add.
12863 (test-xfail-UNIX98/sys/types.h/conform): Add.
12864 (test-xfail-UNIX98/stdlib.h/conform): Add.
12865 (test-xfail-UNIX98/arpa/inet.h/conform): Add.
12866 (test-xfail-POSIX2008/fcntl.h/conform): Add.
12867 (test-xfail-POSIX2008/netdb.h/conform): Add.
12868 (test-xfail-POSIX2008/signal.h/conform): Add.
12869 (test-xfail-POSIX2008/semaphore.h/conform): Add.
12870 (test-xfail-POSIX2008/regex.h/conform): Add.
12871 (test-xfail-POSIX2008/aio.h/conform): Add.
12872 (test-xfail-POSIX2008/mqueue.h/conform): Add.
12873 (test-xfail-POSIX2008/netinet/in.h/conform): Add.
12874 (test-xfail-POSIX2008/sys/wait.h/conform): Add.
12875 (test-xfail-POSIX2008/sys/socket.h/conform): Add.
12876 (test-xfail-POSIX2008/sys/types.h/conform): Add.
12877 (test-xfail-POSIX2008/arpa/inet.h/conform): Add.
12878 (test-xfail-XOPEN2K/fcntl.h/conform): Add.
12879 (test-xfail-XOPEN2K/netdb.h/conform): Add.
12880 (test-xfail-XOPEN2K/signal.h/conform): Add.
12881 (test-xfail-XOPEN2K/semaphore.h/conform): Add.
12882 (test-xfail-XOPEN2K/regex.h/conform): Add.
12883 (test-xfail-XOPEN2K/aio.h/conform): Add.
12884 (test-xfail-XOPEN2K/ftw.h/conform): Add.
12885 (test-xfail-XOPEN2K/mqueue.h/conform): Add.
12886 (test-xfail-XOPEN2K/netinet/in.h/conform): Add.
12887 (test-xfail-XOPEN2K/sys/wait.h/conform): Add.
12888 (test-xfail-XOPEN2K/sys/sem.h/conform): Add.
12889 (test-xfail-XOPEN2K/sys/uio.h/conform): Add.
12890 (test-xfail-XOPEN2K/sys/socket.h/conform): Add.
12891 (test-xfail-XOPEN2K/sys/types.h/conform): Add.
12892 (test-xfail-XOPEN2K/stdlib.h/conform): Add.
12893 (test-xfail-XOPEN2K/arpa/inet.h/conform): Add.
12894 (test-xfail-XOPEN2K8/fcntl.h/conform): Add.
12895 (test-xfail-XOPEN2K8/netdb.h/conform): Add.
12896 (test-xfail-XOPEN2K8/signal.h/conform): Add.
12897 (test-xfail-XOPEN2K8/semaphore.h/conform): Add.
12898 (test-xfail-XOPEN2K8/regex.h/conform): Add.
12899 (test-xfail-XOPEN2K8/aio.h/conform): Add.
12900 (test-xfail-XOPEN2K8/ftw.h/conform): Add.
12901 (test-xfail-XOPEN2K8/mqueue.h/conform): Add.
12902 (test-xfail-XOPEN2K8/netinet/in.h/conform): Add.
12903 (test-xfail-XOPEN2K8/sys/wait.h/conform): Add.
12904 (test-xfail-XOPEN2K8/sys/sem.h/conform): Add.
12905 (test-xfail-XOPEN2K8/sys/uio.h/conform): Add.
12906 (test-xfail-XOPEN2K8/sys/socket.h/conform): Add.
12907 (test-xfail-XOPEN2K8/sys/types.h/conform): Add.
12908 (test-xfail-XOPEN2K8/stdlib.h/conform): Add.
12909 (test-xfail-XOPEN2K8/arpa/inet.h/conform): Add.
12910 * conform/data/signal.h-data (SA_SIGINFO, SA_NOCLDWAIT): XFAIL on
12911 i386-gnu.
12912 * conform/data/sys/wait.h-data (WIFCONTINUED, WEXITED, WSTOPPED,
12913 WCONTINUED, WNOWAIT): XFAIL on i386-gnu.
12914
12915 2018-04-18 Joseph Myers <joseph@codesourcery.com>
12916
12917 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
12918 --enable-obsolete for powerpc-linux-gnuspe.
12919
12920 2018-04-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
12921
12922 * conform/data/sys/un.h-data: Allow sun_ prefix.
12923 * sysdeps/mach/include/lock-intern.h: Do not declare libc hidden
12924 prototypes.
12925 * sysdeps/mach/include/mach.h: Likewise.
12926 * sysdeps/mach/include/mach/mig_support.h: Likewise.
12927 * sysdeps/mach/include/mach_error.h: Likewise.
12928
12929 2018-04-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12930
12931 * sysdeps/arm/armv6t2/memchr.S (memchr): Remove ARM code path.
12932 * sysdeps/arm/armv6t2/strlen.S (memchr): Likewise.
12933 * sysdeps/arm/armv7/multiarch/memchr_neon.S (memchr): Likewise.
12934 * sysdeps/arm/armv7/strcmp.S (strcmp): Likewise.
12935
12936 2018-04-16 Andreas Schwab <schwab@suse.de>
12937
12938 [BZ #19527]
12939 * iconvdata/gconv-modules (ARMSCII8//, ShiftJISX0213//): New aliases.
12940
12941 2018-04-15 Patrick McGehearty <patrick.mcgehearty@oracle.com>
12942
12943 * sysdeps/ieee754/dbl-64/e_exp.c: faster __ieee754_exp()
12944 * sysdeps/ieee754/dbl-64/eexp.tbl: New file for e_exp.c
12945
12946 2018-04-12 DJ Delorie <dj@redhat.com>
12947
12948 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
12949 version to 4.16.
12950
12951 2018-04-12 Stefan Liebler <stli@linux.vnet.ibm.com>
12952
12953 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h
12954 (struct kernel_sigaction): Use the same definition on 31bit as is used
12955 on 64bit.
12956
12957 2018-04-09 Florian Weimer <fweimer@redhat.com>
12958
12959 [BZ #23037]
12960 * resolv/res_send.c (send_dg): Use designated initializers instead
12961 of assignment to zero-initialize other fields of struct mmsghdr.
12962
12963 2018-04-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12964
12965 * sysdeps/posix/readdir.c (__READDIR, __GETDENTS, DIRENTY_TYPE,
12966 __READDIR_ALIAS): Undefine after usage.
12967 * sysdeps/posix/readdir_r.c (__READDIR_R, __GETDENTS, DIRENT_TYPE,
12968 __READDIR_R_ALIAS): Likewise.
12969 * sysdeps/unix/sysv/linux/arm/readdir64.c: Remove file.
12970 * sysdeps/unix/sysv/linux/arm/readdir64_r.c: Likewise.
12971 * sysdeps/unix/sysv/linux/m68k/readdir64.c: Likewise.
12972 * sysdeps/unix/sysv/linux/m68k/readdir64_r.c: Likewise.
12973 * sysdeps/unix/sysv/linux/powerpc/readdir64.c: Likewise.
12974 * sysdeps/unix/sysv/linux/powerpc/readdir64_r.c: Likewise.
12975 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
12976 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
12977 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64.c: Likewise.
12978 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64_r.c: Likewise.
12979 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64.c: Likewise.
12980 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64_r.c: Likewise.
12981 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
12982 * sysdeps/unix/sysv/linux/wordsize-64/readdir64.c: Likewise.
12983 * sysdeps/unix/sysv/linux/wordsize-64/readdir64_r.c: Likewise.
12984 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Likewise.
12985 * sysdeps/unix/sysv/linux/readdir.c: New file.
12986 * sysdeps/unix/sysv/linux/readdir_r.c: Likewise.
12987 * sysdeps/unix/sysv/linux/readdir64.c: Add compat symbol if required.
12988 * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
12989
12990 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update.
12991
12992 2018-04-06 Andreas Schwab <schwab@linux-m68k.org>
12993
12994 * manual/charset.texi (Converting a Character): Fix typo.
12995
12996 2018-04-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12997
12998 * sysdeps/sparc/fpu/libm-test-ulps: Update.
12999
13000 * sysdeps/arm/libm-test-ulps: Update.
13001
13002 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Use default Linux version
13003 as base implementation.
13004 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
13005 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
13006 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
13007 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
13008 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
13009 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h: Add include guards,
13010 remove unrequired definitions and update comments.
13011 * sysdeps/unix/sysv/linux/kernel_sigaction.h: Likewise.
13012 * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h: Likewise.
13013 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: New file.
13014 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h: Likewise.
13015 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Likewise.
13016 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction: Likewise.
13017 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
13018 * sysdeps/unix/sysv/linux/sh/kernel_sigaction.h: Likewise.
13019 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h: Likewise.
13020 * sysdeps/unix/sysv/linux/tile/kernel_sigaction.h: Likewise.
13021 * sysdeps/unix/sysv/linux/ia64/sigaction.c: Remove file.
13022 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
13023 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
13024 * sysdeps/unix/sysv/linux/sigaction.c: Add STUB, SET_SA_RESTORER,
13025 and RESET_SA_RESTORER hooks.
13026
13027 2018-04-05 Stefan Liebler <stli@linux.vnet.ibm.com>
13028
13029 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
13030
13031 2018-04-05 Florian Weimer <fweimer@redhat.com>
13032
13033 * manual/examples/mbstouwcs.c (mbstouwcs): Fix loop termination,
13034 integer overflow, memory leak on error, and indeterminate errno
13035 value. Add a null wide character to terminate the result string.
13036 * manual/charset.texi (Converting a Character): Mention embedded
13037 null bytes in the mbrtowc input string. Explain what happens in
13038 the -2 result case. Do not claim that mbrtowc is simple or
13039 obvious to use. Adjust the description of the code example. Use
13040 @code, not @var, for concrete variables.
13041
13042 2018-04-05 Florian Weimer <fweimer@redhat.com>
13043
13044 * manual/examples/mbstouwcs.c: New file.
13045 * manual/charset.texi (Converting a Character): Include it.
13046
13047 2018-04-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
13048
13049 * include/dirent.h (dirfd): Add hidden proto.
13050 * dirent/dirfd.c (dirfd): Add hidden def.
13051 * sysdeps/mach/hurd/dirfd.c (dirfd): Add hidden def.
13052 * sysdeps/posix/dirfd.c (dirfd): Add hidden def.
13053
13054 2018-04-04 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
13055
13056 * sysdeps/powerpc/fpu/libm-test-ulps: Increase double-precision
13057 sin, cos and sincos to 1 ULP.
13058
13059 2018-04-04 Maciej W. Rozycki <macro@mips.com>
13060
13061 [BZ #19818]
13062 * sysdeps/generic/ldsodefs.h (SYMBOL_ADDRESS): Handle SHN_ABS
13063 symbols.
13064 * elf/dl-addr.c (determine_info): Ignore SHN_ABS symbols.
13065 * elf/tst-absolute-sym.c: New file.
13066 * elf/tst-absolute-sym-lib.c: New file.
13067 * elf/tst-absolute-sym-lib.lds: New file.
13068 * elf/Makefile (tests): Add `tst-absolute-sym'.
13069 (modules-names): Add `tst-absolute-sym-lib'.
13070 (LDLIBS-tst-absolute-sym-lib.so): New variable.
13071 ($(objpfx)tst-absolute-sym-lib.so): New dependency.
13072 ($(objpfx)tst-absolute-sym): New dependency.
13073
13074 [BZ #19818]
13075 * sysdeps/generic/ldsodefs.h (LOOKUP_VALUE_ADDRESS): Add `set'
13076 parameter.
13077 (SYMBOL_ADDRESS): New macro.
13078 [!ELF_FUNCTION_PTR_IS_SPECIAL] (DL_SYMBOL_ADDRESS): Use
13079 SYMBOL_ADDRESS for symbol address calculation.
13080 * elf/dl-runtime.c (_dl_fixup): Likewise.
13081 (_dl_profile_fixup): Likewise.
13082 * elf/dl-symaddr.c (_dl_symbol_address): Likewise.
13083 * elf/rtld.c (dl_main): Likewise.
13084 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Likewise.
13085 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
13086 * sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
13087 (elf_machine_rela): Likewise.
13088 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Likewise.
13089 * sysdeps/hppa/dl-symaddr.c (_dl_symbol_address): Likewise.
13090 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
13091 (elf_machine_rela): Likewise.
13092 * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
13093 * sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
13094 * sysdeps/microblaze/dl-machine.h (elf_machine_rela): Likewise.
13095 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
13096 Likewise.
13097 (elf_machine_reloc): Likewise.
13098 (elf_machine_got_rel): Likewise.
13099 * sysdeps/mips/dl-trampoline.c (__dl_runtime_resolve): Likewise.
13100 * sysdeps/nios2/dl-machine.h (elf_machine_rela): Likewise.
13101 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
13102 Likewise.
13103 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
13104 Likewise.
13105 * sysdeps/riscv/dl-machine.h (elf_machine_rela): Likewise.
13106 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
13107 Likewise.
13108 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
13109 Likewise.
13110 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
13111 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
13112 Likewise.
13113 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
13114 Likewise.
13115 * sysdeps/tile/dl-machine.h (elf_machine_rela): Likewise.
13116 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
13117
13118 2018-04-04 Zack Weinberg <zackw@panix.com>
13119
13120 * sysdeps/generic/internal-signals.h: Include signal.h,
13121 sigsetops.h, and stdbool.h.
13122 (__libc_signal_block_all): Actually block all signals.
13123 (__libc_signal_block_app): Likewise.
13124 (__libc_signal_restore_set): Actually restore the signal mask.
13125
13126 2018-04-04 Florian Weimer <fweimer@redhat.com>
13127
13128 inet: Actually build and run tst-deadline.
13129 * inet/Makefile (tests-internal): Add tst-deadline and do not
13130 overwrite the variable.
13131 (tests-static-internal): Remove variable.
13132
13133 2018-04-03 H.J. Lu <hongjiu.lu@intel.com>
13134
13135 [BZ #22947]
13136 * bits/uio-ext.h (RWF_APPEND): New.
13137 * sysdeps/unix/sysv/linux/bits/uio-ext.h (RWF_APPEND): Likewise.
13138 * manual/llio.texi: Document RWF_APPEND.
13139 * misc/tst-preadvwritev2-common.c (RWF_APPEND): New.
13140 (RWF_SUPPORTED): Add RWF_APPEND.
13141
13142 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13143
13144 [BZ #22391]
13145 * nptl/sigaction.c (__sigaction): Use __is_internal_signal to
13146 check for internal nptl signals.
13147 * nptl/sigaction.c (__sigaction): Likewise.
13148 * signal/sigaddset.c (sigaddset): Likewise.
13149 * signal/sigdelset.c (sigdelset): Likewise.
13150 * sysdeps/posix/signal.c (__bsd_signal): Likewise.
13151 * sysdeps/posix/sigset.c (sigset): Call and check sigaddset return
13152 value.
13153 * signal/sigfillset.c (sigfillset): User __clear_internal_signals
13154 to filter out internal nptl signals.
13155 * signal/tst-sigset.c (do_test): Check ech signal indidually and
13156 also check realtime signals using standard macros.
13157 * sysdeps/generic/internal-signals.h (__clear_internal_signals,
13158 __is_internal_signal, __libc_signal_block_all,
13159 __libc_signal_block_app, __libc_signal_restore_set): New functions.
13160 * sysdeps/nptl/sigfillset.c: Remove file.
13161 * sysdeps/unix/sysv/linux/internal-signals.h (__is_internal_signal):
13162 Change return to bool.
13163 (__clear_internal_signals): Remove SIGTIMER clean since it is
13164 equal to SIGCANEL on Linux.
13165 * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Assume
13166 signal set was constructed using standard functions.
13167
13168 2018-04-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
13169
13170 * sysdeps/mach/hurd/if_index.c (__if_nametoindex): Return ENODEV if
13171 ifname is too long.
13172 * hurd/hurdsig.c (interrupted_reply_port_location): Use
13173 DIAG_IGNORE_NEEDS_COMMENT to silence warning with GCC 6 and before.
13174 * sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal): Add
13175 hidden def.
13176 * mach/spin-lock.c (__mutex_unlock): Add hidden def.
13177 * signal/sigaddset.c: Include <sigsetopts.h>.
13178 * signal/sigdelset.c: Likewise.
13179
13180 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13181
13182 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Cleanup ifdefs.
13183 (__cos): Likewise.
13184 * sysdeps/ieee754/dbl-64/s_sin.c (__sincos): Refactor using the same
13185 logic as sin and cos.
13186
13187 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13188
13189 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Use TAYLOR_SIN for small
13190 inputs. Return correct sign.
13191 (do_sincos): Remove small input check before do_sin, let do_sin set
13192 the sign.
13193 (__sin): Likewise.
13194 (__cos): Likewise.
13195
13196 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13197
13198 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SLOW): Remove.
13199 (do_cos_slow): Likewise.
13200 (do_sin_slow): Likewise.
13201 (reduce_and_compute): Likewise.
13202 (slow): Likewise.
13203 (slow1): Likewise.
13204 (slow2): Likewise.
13205 (sloww): Likewise.
13206 (sloww1): Likewise.
13207 (sloww2): Likewise.
13208 (bslow): Likewise.
13209 (bslow1): Likewise.
13210 (bslow2): Likewise.
13211 (cslow2): Likewise.
13212
13213 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13214
13215 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SIN): Remove cor parameter.
13216 (do_cos): Remove corp parameter and calculations.
13217 (do_sin): Likewise.
13218 (do_sincos): Remove cor variable.
13219 (__sin): Use do_sincos for huge inputs.
13220 (__cos): Likewise.
13221 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
13222 (reduce_and_compute_sincos): Remove unused function.
13223
13224 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13225
13226 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_1): Rename to
13227 reduce_sincos, improve accuracy to 136 bits.
13228 (do_sincos_1): Rename to do_sincos, remove fallbacks to slow functions.
13229 (__sin): Use improved reduction and simplified do_sincos calculation.
13230 (__cos): Likewise.
13231 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
13232
13233 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13234
13235 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_2): Remove function.
13236 (do_sincos_2): Likewise.
13237 (__sin): Remove middle range reduction case.
13238 (__cos): Likewise.
13239 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Remove middle range
13240 reduction case.
13241
13242 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13243
13244 * sysdeps/aarch64/libm-test-ulps: Update ULP for sin, cos, sincos.
13245 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove slow paths for small
13246 inputs.
13247 (__cos): Likewise.
13248 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sin, cos, sincos.
13249
13250 2018-04-03 Joseph Myers <joseph@codesourcery.com>
13251
13252 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
13253 version to 4.16
13254
13255 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13256
13257 * sysdeps/posix/opendir.c (o_directory_works, tryopen_o_directory):
13258 Remove definitions.
13259 (opendir_oflags): Use O_DIRECTORY regardless.
13260 (__opendir, __opendirat): Remove need_isdir_precheck usage.
13261 * sysdeps/unix/sysv/linux/opendir.c: Remove file.
13262
13263 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
13264
13265 * sysdeps/mach/hurd/bits/local_lim.h (_POSIX_THREAD_KEYS_MAX,
13266 _POSIX_THREAD_DESTRUCTOR_ITERATIONS, _POSIX_THREAD_THREADS_MAX): Define
13267 macros.
13268 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_THREADS,
13269 _POSIX_THREAD_ATTR_STACKSIZE, _POSIX_THREAD_ATTR_STACKADDR,
13270 _POSIX_SEMAPHORES, _POSIX_READER_WRITER_LOCKS, _POSIX_TIMEOUTS,
13271 _POSIX_SPIN_LOCKS, _POSIX_BARRIERS): Define macros to 200809L.
13272 * sysdeps/mach/hurd/net/if_ppp.h: Remove file.
13273 * sysdeps/mach/hurd/Makefile (sysdep_headers): Remove net/if_ppp.h.
13274
13275 * htl/Makefile: Bump licence to LGPL 2.1+.
13276 * htl/alloca_cutoff.c: Likewise.
13277 * htl/cthreads-compat.c: Likewise.
13278 * htl/lockfile.c: Likewise.
13279 * htl/pt-alloc.c: Likewise.
13280 * htl/pt-cancel.c: Likewise.
13281 * htl/pt-cleanup.c: Likewise.
13282 * htl/pt-create.c: Likewise.
13283 * htl/pt-dealloc.c: Likewise.
13284 * htl/pt-detach.c: Likewise.
13285 * htl/pt-exit.c: Likewise.
13286 * htl/pt-getattr.c: Likewise.
13287 * htl/pt-initialize.c: Likewise.
13288 * htl/pt-internal.h: Likewise.
13289 * htl/pt-join.c: Likewise.
13290 * htl/pt-self.c: Likewise.
13291 * htl/pt-setcancelstate.c: Likewise.
13292 * htl/pt-setcanceltype.c: Likewise.
13293 * htl/pt-sigmask.c: Likewise.
13294 * htl/pt-spin-inlines.c: Likewise.
13295 * htl/pt-testcancel.c: Likewise.
13296 * htl/pt-yield.c: Likewise.
13297 * htl/tests/test-1.c: Likewise.
13298 * htl/tests/test-10.c: Likewise.
13299 * htl/tests/test-11.c: Likewise.
13300 * htl/tests/test-12.c: Likewise.
13301 * htl/tests/test-13.c: Likewise.
13302 * htl/tests/test-14.c: Likewise.
13303 * htl/tests/test-15.c: Likewise.
13304 * htl/tests/test-16.c: Likewise.
13305 * htl/tests/test-17.c: Likewise.
13306 * htl/tests/test-2.c: Likewise.
13307 * htl/tests/test-3.c: Likewise.
13308 * htl/tests/test-4.c: Likewise.
13309 * htl/tests/test-5.c: Likewise.
13310 * htl/tests/test-6.c: Likewise.
13311 * htl/tests/test-7.c: Likewise.
13312 * htl/tests/test-8.c: Likewise.
13313 * htl/tests/test-9.c: Likewise.
13314 * htl/tests/test-__pthread_destroy_specific-skip.c: Likewise.
13315 * sysdeps/htl/bits/cancelation.h: Likewise.
13316 * sysdeps/htl/bits/pthread-np.h: Likewise.
13317 * sysdeps/htl/bits/pthread.h: Likewise.
13318 * sysdeps/htl/bits/pthreadtypes.h: Likewise.
13319 * sysdeps/htl/bits/semaphore.h: Likewise.
13320 * sysdeps/htl/bits/types/__pthread_key.h: Likewise.
13321 * sysdeps/htl/bits/types/struct___pthread_attr.h: Likewise.
13322 * sysdeps/htl/bits/types/struct___pthread_barrier.h: Likewise.
13323 * sysdeps/htl/bits/types/struct___pthread_barrierattr.h: Likewise.
13324 * sysdeps/htl/bits/types/struct___pthread_cond.h: Likewise.
13325 * sysdeps/htl/bits/types/struct___pthread_condattr.h: Likewise.
13326 * sysdeps/htl/bits/types/struct___pthread_mutex.h: Likewise.
13327 * sysdeps/htl/bits/types/struct___pthread_mutexattr.h: Likewise.
13328 * sysdeps/htl/bits/types/struct___pthread_once.h: Likewise.
13329 * sysdeps/htl/bits/types/struct___pthread_rwlock.h: Likewise.
13330 * sysdeps/htl/bits/types/struct___pthread_rwlockattr.h: Likewise.
13331 * sysdeps/htl/old_pt-atfork.c: Likewise.
13332 * sysdeps/htl/pt-atfork.c: Likewise.
13333 * sysdeps/htl/pt-attr-destroy.c: Likewise.
13334 * sysdeps/htl/pt-attr-getdetachstate.c: Likewise.
13335 * sysdeps/htl/pt-attr-getguardsize.c: Likewise.
13336 * sysdeps/htl/pt-attr-getinheritsched.c: Likewise.
13337 * sysdeps/htl/pt-attr-getschedparam.c: Likewise.
13338 * sysdeps/htl/pt-attr-getschedpolicy.c: Likewise.
13339 * sysdeps/htl/pt-attr-getscope.c: Likewise.
13340 * sysdeps/htl/pt-attr-getstack.c: Likewise.
13341 * sysdeps/htl/pt-attr-getstackaddr.c: Likewise.
13342 * sysdeps/htl/pt-attr-getstacksize.c: Likewise.
13343 * sysdeps/htl/pt-attr-init.c: Likewise.
13344 * sysdeps/htl/pt-attr-setdetachstate.c: Likewise.
13345 * sysdeps/htl/pt-attr-setguardsize.c: Likewise.
13346 * sysdeps/htl/pt-attr-setinheritsched.c: Likewise.
13347 * sysdeps/htl/pt-attr-setschedparam.c: Likewise.
13348 * sysdeps/htl/pt-attr-setschedpolicy.c: Likewise.
13349 * sysdeps/htl/pt-attr-setscope.c: Likewise.
13350 * sysdeps/htl/pt-attr-setstack.c: Likewise.
13351 * sysdeps/htl/pt-attr-setstackaddr.c: Likewise.
13352 * sysdeps/htl/pt-attr-setstacksize.c: Likewise.
13353 * sysdeps/htl/pt-attr.c: Likewise.
13354 * sysdeps/htl/pt-barrier-destroy.c: Likewise.
13355 * sysdeps/htl/pt-barrier-init.c: Likewise.
13356 * sysdeps/htl/pt-barrier-wait.c: Likewise.
13357 * sysdeps/htl/pt-barrier.c: Likewise.
13358 * sysdeps/htl/pt-barrierattr-destroy.c: Likewise.
13359 * sysdeps/htl/pt-barrierattr-getpshared.c: Likewise.
13360 * sysdeps/htl/pt-barrierattr-init.c: Likewise.
13361 * sysdeps/htl/pt-barrierattr-setpshared.c: Likewise.
13362 * sysdeps/htl/pt-cond-brdcast.c: Likewise.
13363 * sysdeps/htl/pt-cond-destroy.c: Likewise.
13364 * sysdeps/htl/pt-cond-init.c: Likewise.
13365 * sysdeps/htl/pt-cond-signal.c: Likewise.
13366 * sysdeps/htl/pt-cond-timedwait.c: Likewise.
13367 * sysdeps/htl/pt-cond-wait.c: Likewise.
13368 * sysdeps/htl/pt-cond.c: Likewise.
13369 * sysdeps/htl/pt-condattr-destroy.c: Likewise.
13370 * sysdeps/htl/pt-condattr-getclock.c: Likewise.
13371 * sysdeps/htl/pt-condattr-getpshared.c: Likewise.
13372 * sysdeps/htl/pt-condattr-init.c: Likewise.
13373 * sysdeps/htl/pt-condattr-setclock.c: Likewise.
13374 * sysdeps/htl/pt-condattr-setpshared.c: Likewise.
13375 * sysdeps/htl/pt-destroy-specific.c: Likewise.
13376 * sysdeps/htl/pt-equal.c: Likewise.
13377 * sysdeps/htl/pt-getconcurrency.c: Likewise.
13378 * sysdeps/htl/pt-getcpuclockid.c: Likewise.
13379 * sysdeps/htl/pt-getschedparam.c: Likewise.
13380 * sysdeps/htl/pt-getspecific.c: Likewise.
13381 * sysdeps/htl/pt-init-specific.c: Likewise.
13382 * sysdeps/htl/pt-key-create.c: Likewise.
13383 * sysdeps/htl/pt-key-delete.c: Likewise.
13384 * sysdeps/htl/pt-key.h: Likewise.
13385 * sysdeps/htl/pt-mutex-destroy.c: Likewise.
13386 * sysdeps/htl/pt-mutex-getprioceiling.c: Likewise.
13387 * sysdeps/htl/pt-mutex-init.c: Likewise.
13388 * sysdeps/htl/pt-mutex-lock.c: Likewise.
13389 * sysdeps/htl/pt-mutex-setprioceiling.c: Likewise.
13390 * sysdeps/htl/pt-mutex-timedlock.c: Likewise.
13391 * sysdeps/htl/pt-mutex-trylock.c: Likewise.
13392 * sysdeps/htl/pt-mutex-unlock.c: Likewise.
13393 * sysdeps/htl/pt-mutexattr-destroy.c: Likewise.
13394 * sysdeps/htl/pt-mutexattr-getprioceiling.c: Likewise.
13395 * sysdeps/htl/pt-mutexattr-getprotocol.c: Likewise.
13396 * sysdeps/htl/pt-mutexattr-getpshared.c: Likewise.
13397 * sysdeps/htl/pt-mutexattr-gettype.c: Likewise.
13398 * sysdeps/htl/pt-mutexattr-init.c: Likewise.
13399 * sysdeps/htl/pt-mutexattr-setprioceiling.c: Likewise.
13400 * sysdeps/htl/pt-mutexattr-setprotocol.c: Likewise.
13401 * sysdeps/htl/pt-mutexattr-setpshared.c: Likewise.
13402 * sysdeps/htl/pt-mutexattr-settype.c: Likewise.
13403 * sysdeps/htl/pt-mutexattr.c: Likewise.
13404 * sysdeps/htl/pt-once.c: Likewise.
13405 * sysdeps/htl/pt-rwlock-attr.c: Likewise.
13406 * sysdeps/htl/pt-rwlock-destroy.c: Likewise.
13407 * sysdeps/htl/pt-rwlock-init.c: Likewise.
13408 * sysdeps/htl/pt-rwlock-rdlock.c: Likewise.
13409 * sysdeps/htl/pt-rwlock-timedrdlock.c: Likewise.
13410 * sysdeps/htl/pt-rwlock-timedwrlock.c: Likewise.
13411 * sysdeps/htl/pt-rwlock-tryrdlock.c: Likewise.
13412 * sysdeps/htl/pt-rwlock-trywrlock.c: Likewise.
13413 * sysdeps/htl/pt-rwlock-unlock.c: Likewise.
13414 * sysdeps/htl/pt-rwlock-wrlock.c: Likewise.
13415 * sysdeps/htl/pt-rwlockattr-destroy.c: Likewise.
13416 * sysdeps/htl/pt-rwlockattr-getpshared.c: Likewise.
13417 * sysdeps/htl/pt-rwlockattr-init.c: Likewise.
13418 * sysdeps/htl/pt-rwlockattr-setpshared.c: Likewise.
13419 * sysdeps/htl/pt-setconcurrency.c: Likewise.
13420 * sysdeps/htl/pt-setschedparam.c: Likewise.
13421 * sysdeps/htl/pt-setschedprio.c: Likewise.
13422 * sysdeps/htl/pt-setspecific.c: Likewise.
13423 * sysdeps/htl/pt-spin.c: Likewise.
13424 * sysdeps/htl/pt-startup.c: Likewise.
13425 * sysdeps/htl/pthread.h: Likewise.
13426 * sysdeps/htl/sem-close.c: Likewise.
13427 * sysdeps/htl/sem-destroy.c: Likewise.
13428 * sysdeps/htl/sem-getvalue.c: Likewise.
13429 * sysdeps/htl/sem-init.c: Likewise.
13430 * sysdeps/htl/sem-open.c: Likewise.
13431 * sysdeps/htl/sem-post.c: Likewise.
13432 * sysdeps/htl/sem-timedwait.c: Likewise.
13433 * sysdeps/htl/sem-trywait.c: Likewise.
13434 * sysdeps/htl/sem-unlink.c: Likewise.
13435 * sysdeps/htl/sem-wait.c: Likewise.
13436 * sysdeps/hurd/htl/pt-kill.c: Likewise.
13437 * sysdeps/i386/htl/pt-machdep.h: Likewise.
13438 * sysdeps/mach/htl/pt-block.c: Likewise.
13439 * sysdeps/mach/htl/pt-spin.c: Likewise.
13440 * sysdeps/mach/htl/pt-stack-alloc.c: Likewise.
13441 * sysdeps/mach/htl/pt-thread-alloc.c: Likewise.
13442 * sysdeps/mach/htl/pt-thread-start.c: Likewise.
13443 * sysdeps/mach/htl/pt-thread-terminate.c: Likewise.
13444 * sysdeps/mach/htl/pt-timedblock.c: Likewise.
13445 * sysdeps/mach/htl/pt-wakeup.c: Likewise.
13446 * sysdeps/mach/hurd/htl/bits/pthread-np.h: Likewise.
13447 * sysdeps/mach/hurd/htl/bits/types/struct___pthread_mutex.h: Likewise.
13448 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c: Likewise.
13449 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c: Likewise.
13450 * sysdeps/mach/hurd/htl/pt-docancel.c: Likewise.
13451 * sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c: Likewise.
13452 * sysdeps/mach/hurd/htl/pt-hurd-cond-wait.c: Likewise.
13453 * sysdeps/mach/hurd/htl/pt-mutex-consistent.c: Likewise.
13454 * sysdeps/mach/hurd/htl/pt-mutex-destroy.c: Likewise.
13455 * sysdeps/mach/hurd/htl/pt-mutex-getprioceiling.c: Likewise.
13456 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Likewise.
13457 * sysdeps/mach/hurd/htl/pt-mutex-lock.c: Likewise.
13458 * sysdeps/mach/hurd/htl/pt-mutex-setprioceiling.c: Likewise.
13459 * sysdeps/mach/hurd/htl/pt-mutex-timedlock.c: Likewise.
13460 * sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c: Likewise.
13461 * sysdeps/mach/hurd/htl/pt-mutex-trylock.c: Likewise.
13462 * sysdeps/mach/hurd/htl/pt-mutex-unlock.c: Likewise.
13463 * sysdeps/mach/hurd/htl/pt-mutex.h: Likewise.
13464 * sysdeps/mach/hurd/htl/pt-mutexattr-destroy.c: Likewise.
13465 * sysdeps/mach/hurd/htl/pt-mutexattr-getprioceiling.c: Likewise.
13466 * sysdeps/mach/hurd/htl/pt-mutexattr-getprotocol.c: Likewise.
13467 * sysdeps/mach/hurd/htl/pt-mutexattr-getpshared.c: Likewise.
13468 * sysdeps/mach/hurd/htl/pt-mutexattr-getrobust.c: Likewise.
13469 * sysdeps/mach/hurd/htl/pt-mutexattr-gettype.c: Likewise.
13470 * sysdeps/mach/hurd/htl/pt-mutexattr-init.c: Likewise.
13471 * sysdeps/mach/hurd/htl/pt-mutexattr-setprioceiling.c: Likewise.
13472 * sysdeps/mach/hurd/htl/pt-mutexattr-setprotocol.c: Likewise.
13473 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c: Likewise.
13474 * sysdeps/mach/hurd/htl/pt-mutexattr-setrobust.c: Likewise.
13475 * sysdeps/mach/hurd/htl/pt-mutexattr-settype.c: Likewise.
13476 * sysdeps/mach/hurd/htl/pt-sigstate-destroy.c: Likewise.
13477 * sysdeps/mach/hurd/htl/pt-sigstate-init.c: Likewise.
13478 * sysdeps/mach/hurd/htl/pt-sigstate.c: Likewise.
13479 * sysdeps/mach/hurd/htl/pt-sysdep.c: Likewise.
13480 * sysdeps/mach/hurd/htl/pt-sysdep.h: Likewise.
13481 * sysdeps/mach/hurd/i386/htl/pt-machdep.c: Likewise.
13482 * sysdeps/mach/hurd/i386/htl/pt-setup.c: Likewise.
13483
13484 * NEWS: Announce that glibc now builds unpatched on GNU/Hurd.
13485 * README: Remove the mention of out-of-tree patches needed for
13486 GNU/Hurd.
13487
13488 * sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
13489 (UTIME_NOW, UTIME_OMIT): Define macros.
13490
13491 * htl/cthreads-compat.c (__cthread_detach): Call __pthread_detach
13492 instead of pthread_detach.
13493 (__cthread_fork): Call __pthread_create instead of pthread_create.
13494 (__cthread_keycreate): Call __pthread_key_create instead of
13495 pthread_key_create.
13496 (__cthread_getspecific): Call __pthread_getspecific instead of
13497 pthread_getspecific.
13498 (__cthread_setspecific): Call __pthread_setspecific instead of
13499 pthread_setspecific.
13500 * htl/pt-alloc.c (__pthread_alloc): Call __pthread_mutex_lock and
13501 __pthread_mutex_unlock instead of pthread_mutex_lock and
13502 pthread_mutex_unlock.
13503 * htl/pt-cleanup.c (__pthread_get_cleanup_stack): Rename to
13504 ___pthread_get_cleanup_stack.
13505 (__pthread_get_cleanup_stack): New strong alias.
13506 * htl/pt-create.c: Include <pthreadP.h>.
13507 (entry_point): Call __pthread_exit instead of pthread_exit.
13508 (pthread_create): Rename to __pthread_create.
13509 (pthread_create): New strong alias.
13510 * htl/pt-detach.c (pthread_detach): Rename to __pthread_detach.
13511 (pthread_detach): New strong alias.
13512 (__pthread_detach): Call __pthread_cond_broadcast instead of
13513 pthread_cond_broadcast.
13514 * htl/pt-exit.c: Include <pthreadP.h>.
13515 (__pthread_exit): Call __pthread_setcancelstate and
13516 ___pthread_get_cleanup_stack instead of pthread_setcancelstate and
13517 __pthread_get_cleanup_stack.
13518 * htl/pt-testcancel.c: Include <pthreadP.h>.
13519 (pthread_testcancel): Call __pthread_exit instead of pthread_exit.
13520 * sysdeps/htl/pt-attr-getstack.c: Include <pthreadP.h>
13521 (__pthread_attr_getstack): Call __pthread_attr_getstackaddr and
13522 __pthread_attr_getstacksize instead of pthread_attr_getstackaddr and
13523 pthread_attr_getstacksize.
13524 * sysdeps/htl/pt-attr-getstackaddr.c (pthread_attr_getstackaddr):
13525 Rename to __pthread_attr_getstackaddr.
13526 (pthread_attr_getstackaddr): New strong alias.
13527 * sysdeps/htl/pt-attr-getstacksize.c (pthread_attr_getstacksize):
13528 Rename to __pthread_attr_getstacksize.
13529 (pthread_attr_getstacksize): New strong alias.
13530 * sysdeps/htl/pt-attr-setstack.c: Include <pthreadP.h>.
13531 (pthread_attr_setstack): Rename to __pthread_attr_setstack.
13532 (pthread_attr_setstack): New strong alias.
13533 (__pthread_attr_setstack): Call __pthread_attr_getstacksize,
13534 __pthread_attr_setstacksize and __pthread_attr_setstackaddr instead of
13535 pthread_attr_getstacksize, pthread_attr_setstacksize and
13536 pthread_attr_setstackaddr.
13537 * sysdeps/htl/pt-attr-setstackaddr.c (pthread_attr_setstackaddr):
13538 Rename to __pthread_attr_setstackaddr.
13539 (pthread_attr_setstackaddr): New strong alias.
13540 * sysdeps/htl/pt-attr-setstacksize.c (pthread_attr_setstacksize):
13541 Rename to __pthread_attr_setstacksize.
13542 (pthread_attr_setstacksize): New strong alias.
13543 * sysdeps/htl/pt-cond-timedwait.c: Include <pthreadP.h>.
13544 (__pthread_cond_timedwait_internal): Use __pthread_exit instead of
13545 pthread_exit.
13546 * sysdeps/htl/pt-key-create.c: Include <pthreadP.h>.
13547 (__pthread_key_create): New hidden def.
13548 * sysdeps/htl/pt-key.h: Include <pthreadP.h>.
13549 * sysdeps/htl/pthreadP.h (_pthread_mutex_init,
13550 __pthread_cond_broadcast, __pthread_create, __pthread_detach,
13551 __pthread_exit, __pthread_key_create, __pthread_getspecific,
13552 __pthread_setspecific, __pthread_setcancelstate,
13553 __pthread_attr_getstackaddr, __pthread_attr_setstackaddr,
13554 __pthread_attr_getstacksize, __pthread_attr_setstacksize,
13555 __pthread_attr_setstack, ___pthread_get_cleanup_stack): New
13556 declarations.
13557 (__pthread_key_create, _pthread_mutex_init): New hidden declarations.
13558 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c
13559 (pthread_attr_setstackaddr): Rename to __pthread_attr_setstackaddr.
13560 (pthread_attr_setstackaddr): New strong alias.
13561 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c
13562 (pthread_attr_setstacksize): Rename to __pthread_attr_setstacksize.
13563 (pthread_attr_setstacksize): New strong alias.
13564 * sysdeps/mach/hurd/htl/pt-docancel.c: Include <pthreadP.h>.
13565 (call_exit): Call __pthread_exit instead of pthread_exit.
13566 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Include <pthreadP.h>.
13567 (_pthread_mutex_init): New hidden definition.
13568 * sysdeps/mach/hurd/htl/pt-sysdep.c: Include <pthreadP.h>.
13569 (_init_routine): Call __pthread_attr_init and __pthread_attr_setstack
13570 instead of pthread_attr_init and pthread_attr_setstack.
13571
13572 * hurd/hurdauth.c (_S_msg_add_auth): Call __vm_allocate and
13573 __vm_deallocate instead of vm_allocate and vm_deallocate.
13574 * hurd/hurdmsg.c (_S_msg_set_env_variable): Call __setenv instead of
13575 setenv.
13576 * hurd/hurdprio.c (_hurd_priority_which_map): Call __geteuid instead
13577 of geteuid.
13578 * hurd/path-lookup.c (file_name_path_scan): Call __strdup instead of
13579 strdup.
13580 * hurd/siginfo.c: Include <libioP.h>.
13581 (_hurd_siginfo_handler): Call _IO_puts instead of puts.
13582 * hurd/xattr.c (_hurd_xattr_get, _hurd_xattr_set): Call __munmap instead of
13583 munmap.
13584 * mach/devstream.c: Include <libioP.h>.
13585 (dealloc_ref): Call __mach_port_deallocate instead of
13586 mach_port_deallocate.
13587 (mach_open_devstream): Call _IO_fopencookie instead of fopencookie.
13588 Call __mach_port_deallocate instead of mach_port_deallocate.
13589 * stdlib/canonicalize.c (__realpath): Call __pathconf instead of
13590 pathconf.
13591 * sysdeps/mach/hurd/ifreq.c (__ifreq): Call __munmap instead of
13592 munmap.
13593 * sysdeps/mach/hurd/ifreq.h (__if_freereq): Likewise.
13594 * sysdeps/mach/hurd/ptrace.c (ptrace): Call __kill instead of kill.
13595 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Call __munmap instead
13596 of munmap.
13597 * sysdeps/mach/hurd/socketpair.c (__socketpair): Call __close instead
13598 of close.
13599 * sysdeps/posix/clock_getres.c (realtime_getres): Call __sysconf
13600 instead of sysconf.
13601 * sysdeps/pthread/timer_gettime.c (timer_gettime): Call
13602 __clock_gettime instead of clock_gettime.
13603 * sysdeps/pthread/timer_routines.c (thread_func): Likewise.
13604 * sysdeps/pthread/timer_settime.c (timer_settime): Likewise.
13605 * sysdeps/unix/bsd/gtty.c (gtty): Call __ioctl instead of ioctl.
13606 * sysdeps/unix/bsd/stty.c (stty): Likewise.
13607 * sysdeps/unix/bsd/tcflow.c (tcflow): Call __tcgetattr instead of
13608 tcgetattr.
13609 * sysdeps/unix/clock_nanosleep.c (__clock_nanosleep): Call
13610 __clock_gettime and __nanosleep instead of clock_gettime and
13611 nanosleep.
13612 * hurd/catch-signal.c (hurd_catch_signal): Rename to
13613 __hurd_catch_signal.
13614 (hurd_catch_signal): New strong alias.
13615 (hurd_safe_memset, hurd_safe_copyout, hurd_safe_copyin): Call
13616 __hurd_catch_signal instead of hurd_catch_signal.
13617 * hurd/exc2signal.c (_hurd_exception2signal): Add hidden def.
13618 * hurd/hurdexec.c (_hurd_init): Add hidden def.
13619 * hurd/hurdinit.c (_hurd_init): Add hidden def.
13620 * hurd/hurdsig.c: Include <mach/mig_support.h>.
13621 (_hurd_thread_sigstate): Add hidden def.
13622 (_hurd_internal_post_signal): Use __mutex_unlock instead of
13623 mutex_unlock.
13624 * hurd/intern-fd.c (_hurd_intern_fd): Add hidden def.
13625 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add hidden def.
13626 * hurd/path-lookup.c (hurd_file_name_path_lookup): Rename to
13627 __hurd_file_name_path_lookup.
13628 (hurd_file_name_path_lookup): New strong alias.
13629 (file_name_path_lookup): Call __hurd_file_name_path_lookup instead of
13630 hurd_file_name_path_lookup.
13631 * mach/errstring.c (mach_error_type): Add hidden def.
13632 * mach/msg-destroy.c (__mach_msg_destroy): Add hidden def.
13633 * mach/mutex-init.c (__mutex_init): Add hidden def.
13634 * mach/spin-lock.c (__spin_lock_locked, __spin_lock, __spin_unlock,
13635 __spin_try_lock, __mutex_lock, __mutex_trylock): Add hidden defs.
13636 * mach/spin-solid.c (__spin_lock_solid): Add hidden def.
13637 * sysdeps/mach/hurd/getcwd.c
13638 (_hurd_canonicalize_directory_name_internal): Rename to
13639 __hurd_canonicalize_directory_name_internal.
13640 (_hurd_canonicalize_directory_name_internal): New strong alias.
13641 (__canonicalize_directory_name_internal, __getcwd): Call
13642 __hurd_canonicalize_directory_name_internal instead of
13643 _hurd_canonicalize_directory_name_internal.
13644 * sysdeps/mach/hurd/mig-reply.c: Include <mach/mig_support.h>.
13645 (__mig_get_reply_port, __mig_dealloc_reply_port, __mig_init): Add
13646 hidden defs.
13647 * sysdeps/hurd/include/hurd.h: New file.
13648 * sysdeps/hurd/include/hurd/fd.h: New file.
13649 * sysdeps/hurd/include/hurd/signal.h: New file.
13650 * sysdeps/mach/include/lock-intern.h: New file.
13651 * sysdeps/mach/include/mach.h: New file.
13652 * sysdeps/mach/include/mach/mig_support.h: New file.
13653 * sysdeps/mach/include/mach_error.h: New file.
13654 * sysdeps/hurd/include/hurd/signal.h (_hurd_raise_signal): Add hidden
13655 prototype.
13656 * hurd/hurd-raise.c (_hurd_raise_signal): Add hidden def.
13657 * hurd/Makefile ($(inlines:%=$(objpfx)%.c): Define
13658 _HEADER_H_HIDDEN_DEF macro.
13659 * sysdeps/hurd/include/hurd/fd.h (_hurd_fd_error,
13660 _hurd_fd_error_signal): Add hidden prototype.
13661 [_HURD_FD_H_HIDDEN_DEF] (_hurd_fd_error, _hurd_fd_error_signal): Add
13662 hidden def.
13663 * libio/iolibio.h (_IO_puts): New hidden prototype.
13664 * libio/ioputs.c (_IO_puts): New hidden def.
13665 * sysdeps/mach/hurd/localplt.data: New file.
13666
13667 2018-04-02 Agustina Arzille <avarzille@riseup.net>
13668 Amos Jeffries <squid3@treenet.co.nz>
13669 David Michael <fedora.dm0@gmail.com>
13670 Marco Gerards <marco@gnu.org>
13671 Marcus Brinkmann <marcus@gnu.org>
13672 Neal H. Walfield <neal@gnu.org>
13673 Pino Toscano <toscano.pino@tiscali.it>
13674 Richard Braun <rbraun@sceen.net>
13675 Roland McGrath <roland@gnu.org>
13676 Samuel Thibault <samuel.thibault@ens-lyon.org>
13677 Thomas DiModica <ricinwich@yahoo.com>
13678 Thomas Schwinge <tschwinge@gnu.org>
13679
13680 * htl: New directory.
13681 * sysdeps/htl: New directory.
13682 * sysdeps/hurd/htl: New directory.
13683 * sysdeps/i386/htl: New directory.
13684 * sysdeps/mach/htl: New directory.
13685 * sysdeps/mach/hurd/htl: New directory.
13686 * sysdeps/mach/hurd/i386/htl: New directory.
13687 * nscd/Depend, resolv/Depend, rt/Depend: Add htl dependency.
13688 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/i386/htl imply.
13689 * sysdeps/mach/hurd/i386/libpthread.abilist: New file.
13690
13691 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
13692
13693 * sysdeps/pthread/timer_routines.c (__timer_thread_start): Block all
13694 signals in thread created for runing timers.
13695
13696 2018-04-01 Florian Weimer <fweimer@redhat.com>
13697
13698 * support/support_format_addrinfo.c (support_format_addrinfo):
13699 Include unknown error number in formatted result.
13700
13701 2018-03-29 Florian Weimer <fweimer@redhat.com>
13702
13703 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c (do_test): Also
13704 capture SIGBUS.
13705
13706 2018-03-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13707
13708 * sysdeps/unix/sysv/linux/arch-fork.h [__ASSUME_CLONE_BACKWARDS]
13709 (arch_fork): Issue INLINE_CLONE_SYSCALL if defined.
13710 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
13711 (__ASSUME_CLONE_BACKWARDS): Define.
13712
13713 2018-03-27 Jesse Hathaway <jesse@mbuki-mvuki.org>
13714
13715 [BZ #23024]
13716 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Return
13717 early when linux sentinel value is set.
13718
13719 2018-03-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
13720
13721 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_MEMLOCK): Define.
13722
13723 2018-03-27 Andreas Schwab <schwab@suse.de>
13724
13725 [BZ #23005]
13726 * resolv/res_send.c (__res_context_send): Return ENOMEM if
13727 allocation of private copy of nsaddr_list fails.
13728
13729 2018-03-26 Joseph Myers <joseph@codesourcery.com>
13730
13731 [BZ #16552]
13732 * sysdeps/unix/sysv/linux/generic/umount.c: Move to ....
13733 * sysdeps/unix/sysv/linux/umount.c: ... here.
13734 * sysdeps/unix/sysv/linux/arm/umount.c: Remove file.
13735 * sysdeps/unix/sysv/linux/hppa/umount.c: Likewise.
13736 * sysdeps/unix/sysv/linux/ia64/umount.c: Likewise.
13737 * sysdeps/unix/sysv/linux/mips/mips64/umount.c: Likewise.
13738 * sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Likewise.
13739 * sysdeps/unix/sysv/linux/umount.S: Likewise.
13740 * sysdeps/unix/sysv/linux/x86_64/umount.c: Likewise.
13741
13742 2018-03-26 Andreas Schwab <schwab@suse.de>
13743
13744 * elf/elf.h (R_RISCV_BRANCH, R_RISCV_JAL, R_RISCV_CALL)
13745 (R_RISCV_CALL_PLT, R_RISCV_GOT_HI20, R_RISCV_TLS_GOT_HI20)
13746 (R_RISCV_TLS_GD_HI20, R_RISCV_PCREL_HI20, R_RISCV_PCREL_LO12_I)
13747 (R_RISCV_PCREL_LO12_S, R_RISCV_HI20, R_RISCV_LO12_I)
13748 (R_RISCV_LO12_S, R_RISCV_TPREL_HI20, R_RISCV_TPREL_LO12_I)
13749 (R_RISCV_TPREL_LO12_S, R_RISCV_TPREL_ADD, R_RISCV_ADD8)
13750 (R_RISCV_ADD16, R_RISCV_ADD32, R_RISCV_ADD64, R_RISCV_SUB8)
13751 (R_RISCV_SUB16, R_RISCV_SUB32, R_RISCV_SUB64)
13752 (R_RISCV_GNU_VTINHERIT, R_RISCV_GNU_VTENTRY, R_RISCV_ALIGN)
13753 (R_RISCV_RVC_BRANCH, R_RISCV_RVC_JUMP, R_RISCV_RVC_LUI)
13754 (R_RISCV_GPREL_I, R_RISCV_GPREL_S, R_RISCV_TPREL_I)
13755 (R_RISCV_TPREL_S, R_RISCV_RELAX, R_RISCV_SUB6, R_RISCV_SET6)
13756 (R_RISCV_SET8, R_RISCV_SET16, R_RISCV_SET32, R_RISCV_32_PCREL)
13757 (R_RISCV_NUM): Define.
13758
13759 2018-03-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
13760
13761 * include/errno.h [IS_IN(rtld) && !RTLD_PRIVATE_ERRNO]: Do not use the
13762 TLS declaration of errno.
13763 * sysdeps/generic/libc-start.h [!SHARED] (ARCH_SETUP_TLS): Define to
13764 __libc_setup_tls.
13765 * sysdeps/unix/sysv/linux/powerpc/libc-start.h [!SHARED]
13766 (ARCH_SETUP_TLS): Likewise.
13767 * sysdeps/mach/hurd/libc-start.h: New file copied from
13768 sysdeps/generic/libc-start.h, but define ARCH_SETUP_TLS to empty.
13769 * csu/libc-start.c [!SHARED] (LIBC_START_MAIN): Call ARCH_SETUP_TLS
13770 instead of __libc_setup_tls.
13771 * sysdeps/mach/hurd/i386/init-first.c [!SHARED] (init1): Call
13772 __libc_setup_tls before initializing libpthread and running _hurd_init
13773 which starts the signal thread.
13774 * sysdeps/generic/ldsodefs.h [SHARED] (__pthread_initialize_minimal):
13775 Declare function.
13776 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
13777
13778 2018-03-24 H.J. Lu <hongjiu.lu@intel.com>
13779
13780 [BZ #22998]
13781 * elf/Makefile (tests): Add $(tests-execstack-$(have-z-execstack))
13782 after it is defined.
13783
13784 2018-03-23 Andrew Senkevich <andrew.senkevich@intel.com>
13785 Max Horn <max@quendi.de>
13786
13787 [BZ #22644]
13788 CVE-2017-18269
13789 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Fixed
13790 branch conditions.
13791 * string/test-memmove.c (do_test2): New testcase.
13792
13793 2018-03-22 Joseph Myers <joseph@codesourcery.com>
13794
13795 * sysdeps/generic/frame.h: Remove file.
13796 * sysdeps/arm/frame.h: Likewise.
13797 * sysdeps/hppa/frame.h: Likewise.
13798 * sysdeps/generic/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS): Remove
13799 macro.
13800 (GET_FRAME): Likewise.
13801 (GET_STACK): Likewise.
13802 (CALL_SIGHANDLER): Likewise.
13803 * sysdeps/mach/hurd/i386/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS):
13804 Likewise.
13805 (GET_FRAME): Likewise.
13806 (GET_STACK): Likewise.
13807 (CALL_SIGHANDLER): Likewise.
13808 * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h
13809 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13810 (GET_FRAME): Likewise.
13811 (GET_STACK): Likewise.
13812 (CALL_SIGHANDLER): Likewise.
13813 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h
13814 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13815 (GET_FRAME): Likewise.
13816 (GET_STACK): Likewise.
13817 (ADVANCE_STACK_FRAME): Likewise.
13818 (CALL_SIGHANDLER): Likewise.
13819 * sysdeps/unix/sysv/linux/i386/sigcontextinfo.h
13820 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13821 (GET_FRAME): Likewise.
13822 (GET_STACK): Likewise.
13823 (CALL_SIGHANDLER): Likewise.
13824 * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h
13825 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13826 (GET_FRAME): Likewise.
13827 (GET_STACK): Likewise.
13828 (CALL_SIGHANDLER): Likewise.
13829 * sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h
13830 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13831 (GET_FRAME): Likewise.
13832 (GET_STACK): Likewise.
13833 (CALL_SIGHANDLER): Likewise.
13834 * sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h
13835 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13836 (GET_FRAME): Likewise.
13837 (GET_STACK): Likewise.
13838 (CALL_SIGHANDLER): Likewise.
13839 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h
13840 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13841 (GET_FRAME): Likewise.
13842 (GET_STACK): Likewise.
13843 (CALL_SIGHANDLER): Likewise.
13844 * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h
13845 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13846 (GET_FRAME): Likewise.
13847 (GET_STACK): Likewise.
13848 (CALL_SIGHANDLER): Likewise.
13849 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h
13850 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13851 (GET_FRAME): Likewise.
13852 (GET_STACK): Likewise.
13853 (CALL_SIGHANDLER): Likewise.
13854 * sysdeps/unix/sysv/linux/s390/sigcontextinfo.h
13855 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13856 (GET_FRAME): Likewise.
13857 (GET_STACK): Likewise.
13858 (CALL_SIGHANDLER): Likewise.
13859 * sysdeps/unix/sysv/linux/sh/sigcontextinfo.h
13860 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13861 (GET_FRAME): Likewise.
13862 (GET_STACK): Likewise.
13863 (CALL_SIGHANDLER): Likewise.
13864 * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
13865 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13866 (FIRST_FRAME_POINTER): Likewise.
13867 (ADVANCE_STACK_FRAME): Likewise.
13868 (GET_STACK): Likewise.
13869 (GET_FRAME): Likewise.
13870 (CALL_SIGHANDLER): Likewise.
13871 * sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h
13872 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13873 (ADVANCE_STACK_FRAME): Likewise.
13874 (GET_STACK): Likewise.
13875 (GET_FRAME): Likewise.
13876 (CALL_SIGHANDLER): Likewise.
13877 * sysdeps/unix/sysv/linux/tile/sigcontextinfo.h
13878 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13879 (GET_FRAME): Likewise.
13880 (GET_STACK): Likewise.
13881 (CALL_SIGHANDLER): Likewise.
13882 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h
13883 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13884 (GET_FRAME): Likewise.
13885 (GET_STACK): Likewise.
13886 (CALL_SIGHANDLER): Likewise.
13887
13888 2018-03-21 Joseph Myers <joseph@codesourcery.com>
13889
13890 * sysdeps/x86_64/backtrace.c: Move to ....
13891 * debug/backtrace.c: ... here.
13892 * sysdeps/aarch64/backtrace.c: Remove file.
13893 * sysdeps/alpha/backtrace.c: Likewise.
13894 * sysdeps/hppa/backtrace.c: Likewise.
13895 * sysdeps/ia64/backtrace.c: Likewise.
13896 * sysdeps/mips/backtrace.c: Likewise.
13897 * sysdeps/nios2/backtrace.c: Likewise.
13898 * sysdeps/riscv/backtrace.c: Likewise.
13899 * sysdeps/sh/backtrace.c: Likewise.
13900 * sysdeps/tile/backtrace.c: Likewise.
13901
13902 2018-03-20 Joseph Myers <joseph@codesourcery.com>
13903
13904 [BZ #22987]
13905 * sysdeps/powerpc/bits/mathinline.h (fdim): Remove inline
13906 function.
13907 (fdimf): Likewise.
13908 * sysdeps/sparc/fpu/bits/mathinline.h: Remove file.
13909
13910 [BZ #17343]
13911 * stdlib/random_r.c (__random_r): Use unsigned arithmetic for
13912 possibly overflowing computations.
13913
13914 2018-03-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
13915
13916 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): Remove errno
13917 values from Linux-specific section now that it is in the GNU section.
13918 * sysdeps/gnu/errlist.c: Regenerate.
13919
13920 2018-03-20 Joseph Myers <joseph@codesourcery.com>
13921
13922 * math/Makefile (libm-narrow-fns): Add sub.
13923 (libm-test-funcs-narrow): Likewise.
13924 * math/Versions (GLIBC_2.28): Add narrowing subtract functions.
13925 * math/bits/mathcalls-narrow.h (sub): Use __MATHCALL_NARROW.
13926 * math/gen-auto-libm-tests.c (test_functions): Add sub.
13927 * math/math-narrow.h (CHECK_NARROW_SUB): New macro.
13928 (NARROW_SUB_ROUND_TO_ODD): Likewise.
13929 (NARROW_SUB_TRIVIAL): Likewise.
13930 * sysdeps/ieee754/float128/float128_private.h (__fsubl): New
13931 macro.
13932 (__dsubl): Likewise.
13933 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fsub and
13934 dsub.
13935 (CFLAGS-nldbl-dsub.c): New variable.
13936 (CFLAGS-nldbl-fsub.c): Likewise.
13937 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
13938 __nldbl_dsubl.
13939 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dsubl): New
13940 prototype.
13941 * manual/arith.texi (Misc FP Arithmetic): Document fsub, fsubl,
13942 dsubl, fMsubfN, fMsubfNx, fMxsubfN and fMxsubfNx.
13943 * math/auto-libm-test-in: Add tests of sub.
13944 * math/auto-libm-test-out-narrow-sub: New generated file.
13945 * math/libm-test-narrow-sub.inc: New file.
13946 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
13947 * sysdeps/ieee754/dbl-64/s_f32xsubf64.c: Likewise.
13948 * sysdeps/ieee754/dbl-64/s_fsub.c: Likewise.
13949 * sysdeps/ieee754/float128/s_f32subf128.c: Likewise.
13950 * sysdeps/ieee754/float128/s_f64subf128.c: Likewise.
13951 * sysdeps/ieee754/float128/s_f64xsubf128.c: Likewise.
13952 * sysdeps/ieee754/ldbl-128/s_dsubl.c: Likewise.
13953 * sysdeps/ieee754/ldbl-128/s_f64xsubf128.c: Likewise.
13954 * sysdeps/ieee754/ldbl-128/s_fsubl.c: Likewise.
13955 * sysdeps/ieee754/ldbl-128ibm/s_dsubl.c: Likewise.
13956 * sysdeps/ieee754/ldbl-128ibm/s_fsubl.c: Likewise.
13957 * sysdeps/ieee754/ldbl-96/s_dsubl.c: Likewise.
13958 * sysdeps/ieee754/ldbl-96/s_fsubl.c: Likewise.
13959 * sysdeps/ieee754/ldbl-opt/nldbl-dsub.c: Likewise.
13960 * sysdeps/ieee754/ldbl-opt/nldbl-fsub.c: Likewise.
13961 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
13962 * sysdeps/ieee754/soft-fp/s_fsub.c: Likewise.
13963 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
13964 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13965 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
13966 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
13967 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
13968 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
13969 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
13970 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
13971 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
13972 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
13973 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
13974 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
13975 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
13976 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
13977 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
13978 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
13979 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
13980 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
13981 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
13982 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
13983 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
13984 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
13985 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
13986 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
13987 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
13988 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
13989 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
13990 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
13991 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
13992
13993 2018-03-19 Joseph Myers <joseph@codesourcery.com>
13994
13995 [BZ #20079]
13996 * elf/elf.h (SHT_X86_64_UNWIND): New macro.
13997
13998 2018-03-19 Wilco Dijkstra <wdijkstr@arm.com>
13999
14000 * benchtests/bench-timing.h (attribute_hidden): Undefine.
14001
14002 2018-03-18 Richard Braun <rbraun@sceen.net>
14003
14004 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Use a temporary
14005 thread reference.
14006
14007 2018-03-18 Agustina Arzille <avarzille@riseup.net>
14008
14009 * sysdeps/mach/libc-lock.h (__libc_cleanup_frame): Define structure.
14010 (__libc_cleanup_fct): Define function.
14011 (__libc_cleanup_region_start, __libc_cleanup_region_end,
14012 __libc_cleanup_end): Rewrite implementation using
14013 __attribute__ ((__cleanup__)).
14014 (__libc_cleanup_push, __libc_cleanup_pop): New macros.
14015 * hurd/Makefile (routines): Add hurdlock.
14016 * hurd/Versions (GLIBC_PRIVATE): Added new entry to export the above
14017 interface.
14018 (HURD_CTHREADS_0.3): Remove __libc_getspecific.
14019 * hurd/hurdpid.c: Include <lowlevellock.h>
14020 (_S_msg_proc_newids): Use lll_wait to synchronize.
14021 * hurd/hurdsig.c: (reauth_proc): Use __mutex_lock and __mutex_unlock.
14022 * hurd/setauth.c: Include <hurdlock.h>, use integer for synchronization.
14023 * mach/Makefile (lock-headers): Remove machine-lock.h.
14024 * mach/lock-intern.h: Include <lowlevellock.h> instead of
14025 <machine-lock.h>.
14026 (__spin_lock_t): New type.
14027 (__SPIN_LOCK_INITIALIZER): New macro.
14028 (__spin_lock, __spin_unlock, __spin_try_lock, __spin_lock_locked,
14029 __mutex_init, __mutex_lock_solid, __mutex_unlock_solid, __mutex_lock,
14030 __mutex_unlock, __mutex_trylock): Use lll to implement locks.
14031 * mach/mutex-init.c: Include <lowlevellock.h> instead of <cthreads.h>.
14032 (__mutex_init): Initialize with lll.
14033 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): New errno values.
14034 * sysdeps/mach/Makefile: Add libmachuser as dependencies for libs
14035 needing lll.
14036 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
14037 * sysdeps/mach/hurd/cthreads.c (__libc_getspecific): Remove function.
14038 * sysdeps/mach/hurd/bits/libc-lock.h: Remove file.
14039 * sysdeps/mach/hurd/setpgid.c: Include <lowlevellock.h>.
14040 (__setpgid): Use lll for synchronization.
14041 * sysdeps/mach/hurd/setsid.c: Likewise with __setsid.
14042 * sysdeps/mach/bits/libc-lock.h: Include <tls.h> and <lowlevellock.h>
14043 instead of <cthreads.h>.
14044 (_IO_lock_inexpensive): New macro
14045 (__libc_lock_recursive_t, __rtld_lock_recursive_t): New structures.
14046 (__libc_lock_self0): New declaration.
14047 (__libc_lock_owner_self): New macro.
14048 (__libc_key_t): Remove type.
14049 (_LIBC_LOCK_INITIALIZER): New macro.
14050 (__libc_lock_define_initialized, __libc_lock_init, __libc_lock_fini,
14051 __libc_lock_fini_recursive, __rtld_lock_fini_recursive,
14052 __libc_lock_lock, __libc_lock_trylock, __libc_lock_unlock,
14053 __libc_lock_define_initialized_recursive,
14054 __rtld_lock_define_initialized_recursive,
14055 __libc_lock_init_recursive, __libc_lock_trylock_recursive,
14056 __libc_lock_lock_recursive, __libc_lock_unlock_recursive,
14057 __rtld_lock_initialize, __rtld_lock_trylock_recursive,
14058 __rtld_lock_lock_recursive, __rtld_lock_unlock_recursive
14059 __libc_once_define, __libc_mutex_unlock): Reimplement with lll.
14060 (__libc_lock_define_recursive, __rtld_lock_define_recursive,
14061 _LIBC_LOCK_RECURSIVE_INITIALIZER, _RTLD_LOCK_RECURSIVE_INITIALIZER):
14062 New macros.
14063 Include <libc-lockP.h> to reimplement libc_key* with pthread_key*.
14064 * hurd/hurdlock.c: New file.
14065 * hurd/hurdlock.h: New file.
14066 * mach/lowlevellock.h: New file
14067
14068 2018-03-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
14069
14070 * sysdeps/mach/hurd/cthreads.c: Include <cthreads.h>.
14071 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ELOOP
14072 when opening a symlink with O_NOFOLLOW.
14073 * hurd/hurdlookup.c (__hurd_file_name_lookup): Do not append '/' to
14074 path when flags contains O_NOFOLLOW.
14075 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ENOTDIR
14076 if flags contains O_DIRECTORY and the result is a directory.
14077 * sysdeps/mach/hurd/i386/init-first.c (init): Also find ELF headers by
14078 oneself when the pointer given in D is nul (as set by ext2fs).
14079 * sysdeps/mach/hurd/mlockall.c: New file.
14080 * sysdeps/mach/hurd/munlockall.c: New file.
14081
14082 2018-03-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
14083
14084 * hurd/hurdsig.c: Include <pthread.h>.
14085 (_hurdsig_init): Call pthread_getattr_np and pthread_attr_getstack to
14086 get the signal thread stack layout.
14087 * hurd/Makefile (headers): Remove threadvar.h.
14088 (inline-headers): Remove threadvar.h.
14089 * hurd/Versions (GLIBC_2.0: Remove __hurd_sigthread_stack_base,
14090 __hurd_sigthread_stack_end, __hurd_sigthread_variables,
14091 __hurd_threadvar_max, __hurd_errno_location.
14092 (HURD_CTHREADS_0.3): Add pthread_getattr_np, pthread_attr_getstack.
14093 * hurd/hurd/signal.h: Do not include <hurd/threadvar.h>.
14094 (_hurd_self_sigstate): Use THREAD_SELF to get _hurd_sigstate.
14095 (_HURD_SIGNAL_H_EXTERN_INLINE): Use THREAD_SELF to get _hurd_sigstate,
14096 unless TLS is not initialized yet, in which case we do not need a
14097 critical section yet anyway.
14098 * hurd/hurd/threadvar.h: Include <tls.h>, do not include
14099 <machine-sp.h>.
14100 (__hurd_sigthread_variables, __hurd_threadvar_max): Remove variables
14101 declarations.
14102 (__hurd_threadvar_index): Remove enum.
14103 (_HURD_THREADVAR_H_EXTERN_INLINE): Remove macro.
14104 (__hurd_threadvar_location_from_sp,__hurd_threadvar_location): Remove
14105 inlines.
14106 (__hurd_reply_port0): New variable declaration.
14107 (__hurd_local_reply_port): New macro.
14108 * hurd/hurdsig.c (__hurd_sigthread_variables): Remove variable.
14109 (interrupted_reply_port_location): Add thread_t parameter. Use it
14110 with THREAD_TCB to access thread-local variables.
14111 (_hurdsig_abort_rpcs): Pass ss->thread to
14112 interrupted_reply_port_location.
14113 (_hurd_internal_post_signal): Likewise.
14114 (_hurdsig_init): Use presence of cthread_fork instead of
14115 __hurd_threadvar_stack_mask to start signal thread by hand.
14116 Remove signal thread threadvar initialization.
14117 * hurd/hurdstartup.c: Do not include <hurd/threadvar.h>
14118 * hurd/sigunwind.c: Include <hurd/threadvar.h>
14119 (_hurdsig_longjmp_from_handler): Use __hurd_local_reply_port instead
14120 of threadvar.
14121 * sysdeps/mach/hurd/Versions (libc.GLIBC_PRIVATE): Add
14122 __libc_lock_self0.
14123 (ld.GLIBC_2.0): Remove __hurd_sigthread_stack_base,
14124 __hurd_sigthread_stack_end, __hurd_sigthread_variables.
14125 (ld.GLIBC_PRIVATE): Add __libc_lock_self0.
14126 * sysdeps/mach/hurd/cthreads.c: Add __libc_lock_self0.
14127 * sysdeps/mach/hurd/dl-sysdep.c (errno, __hurd_sigthread_stack_base,
14128 __hurd_sigthread_stack_end, __hurd_sigthread_variables, threadvars,
14129 __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): Do not
14130 define variables.
14131 * sysdeps/mach/hurd/errno-loc.c: Do not include <errno.h> and
14132 <hurd/threadvar.h>.
14133 [IS_IN(rtld)] (rtld_errno): New variable.
14134 [IS_IN(rtld)] (__errno_location): New weak function.
14135 [!IS_IN(rtld)]: Include "../../../csu/errno-loc.c".
14136 * sysdeps/mach/hurd/errno.c: Remove file.
14137 * sysdeps/mach/hurd/fork.c: Include <hurd/threadvar.h>
14138 (__fork): Remove THREADVAR_SPACE macro and its use.
14139 * sysdeps/mach/hurd/i386/init-first.c (__hurd_threadvar_max): Remove
14140 variable.
14141 (init): Do not initialize threadvar.
14142 * sysdeps/mach/hurd/i386/libc.abilist (__hurd_threadvar_max): Remove
14143 symbol.
14144 * sysdeps/mach/hurd/i386/sigreturn.c (__sigreturn): Use
14145 __hurd_local_reply_port instead of threadvar.
14146 * sysdeps/mach/hurd/i386/tls.h (tcbhead_t): Add reply_port and
14147 _hurd_sigstate fields.
14148 (HURD_DESC_TLS, __LIBC_NO_TLS, THREAD_TCB): New macro.
14149 * sysdeps/mach/hurd/i386/trampoline.c: Remove outdated comment.
14150 * sysdeps/mach/hurd/libc-lock.h: Do not include <hurd/threadvar.h>.
14151 (__libc_lock_owner_self): Use &__libc_lock_self0 and THREAD_SELF
14152 instead of threadvar.
14153 * sysdeps/mach/hurd/libc-tsd.h: Remove file.
14154 * sysdeps/mach/hurd/mig-reply.c (GETPORT, reply_port): Remove macros.
14155 (use_threadvar, global_reply_port): Remove variables.
14156 (__hurd_reply_port0): New variable.
14157 (__mig_get_reply_port): Use __hurd_local_reply_port and
14158 __hurd_reply_port0 instead of threadvar.
14159 (__mig_dealloc_reply_port): Likewise.
14160 (__mig_init): Do not initialize threadvar.
14161 * sysdeps/mach/hurd/profil.c: Fix comment.
14162 * hurd/Versions (HURD_CTHREADS_0.3): Rename weak refs cthread_fork,
14163 cthread_detach, pthread_getattr_np, pthread_attr_getstack,
14164 cthread_keycreate, cthread_getspecific, cthread_setspecific to
14165 __cthread_fork, __cthread_detach, __pthread_getattr_np,
14166 __pthread_attr_getstack, __cthread_keycreate, __cthread_getspecific,
14167 __cthread_setspecific.
14168 * hurd/hurdsig.c (_hurdsig_init): Use __cthread_fork,
14169 __cthread_detach, __pthread_getattr_np, __pthread_attr_getstack,
14170 __cthread_t instead of cthread_fork, cthread_detach,
14171 pthread_getattr_np, pthread_attr_getstack.
14172 * sysdeps/mach/hurd/cthreads.c (cthread_keycreate): Rename to
14173 __cthread_keycreate.
14174 (cthread_getspecific): Rename to __cthread_getspecific.
14175 (cthread_setspecific): Rename to __cthread_setspecific.
14176 (__libc_getspecific): Use __cthread_getspecific instead of
14177 cthread_getspecific.
14178 * sysdeps/mach/hurd/libc-lock.h (__libc_key_create): Use
14179 __cthread_keycreate instead of cthread_keycreate.
14180 (__libc_setspecific): Use __cthread_setspecific instead of
14181 cthread_setspecific.
14182 * sysdeps/mach/libc-lock.h (__libc_key_create, __libc_setspecific):
14183 Likewise.
14184 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Always include
14185 <dl-sysdep.h>. Test for value of RTLD_PRIVATE_ERRNO instead of
14186 testing whether it is defined.
14187
14188 2018-03-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
14189
14190 * sysdeps/generic/thread_state.h (MACHINE_NEW_THREAD_STATE_FLAVOR):
14191 Define macro.
14192 * sysdeps/mach/thread_state.h (MACHINE_THREAD_STATE_FIX_NEW): New macro.
14193 * sysdeps/mach/i386/thread_state.h
14194 (MACHINE_NEW_THREAD_STATE_FLAVOR): New macro, defined to
14195 i386_THREAD_STATE.
14196 (MACHINE_THREAD_STATE_FLAVOR): Define to i386_REGS_SEGS_STATE instead of
14197 i386_THREAD_STATE.
14198 (MACHINE_THREAD_STATE_FIX_NEW): New macro, reads segments.
14199
14200 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): Use
14201 i386_REGS_SEGS_STATE instead of i386_THREAD_STATE.
14202
14203 * sysdeps/mach/hurd/i386/tls.h (TCB_ALIGNMENT, HURD_SEL_LDT): New
14204 macros.
14205 (_hurd_tls_fork): Add original thread parameter, Duplicate existing LDT
14206 descriptor instead of creating a new one.
14207 (_hurd_tls_new): New function, creates a new descriptor and updates tcb.
14208
14209 * mach/setup-thread.c: Include <ldsodefs.h>.
14210 (__mach_setup_thread): Call _dl_allocate_tls, pass
14211 MACHINE_NEW_THREAD_STATE_FLAVOR to __thread_set_state instead of
14212 MACHINE_THREAD_STATE_FLAVOR, before getting
14213 MACHINE_THREAD_STATE_FLAVOR, calling _hurd_tls_new, and setting
14214 MACHINE_THREAD_STATE_FLAVOR with the result.
14215 * hurd/hurdfault.c (_hurdsig_fault_init): Call
14216 MACHINE_THREAD_STATE_FIX_NEW.
14217 * sysdeps/mach/hurd/fork.c (__fork): Call _hurd_tls_fork for sigthread
14218 too. Add original thread parameter.
14219
14220 2018-03-16 Joseph Myers <joseph@codesourcery.com>
14221
14222 * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC] (__finite):
14223 Remove inline function.
14224
14225 * sysdeps/i386/fpu/libm-test-ulps: Update.
14226 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
14227
14228 2018-03-16 Wilco Dijkstra <wdijkstr@arm.com>
14229
14230 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Revert previous
14231 commit.
14232
14233 2018-03-15 Joseph Myers <joseph@codesourcery.com>
14234
14235 * sysdeps/x86/fpu/bits/mathinline.h [__FAST_MATH__]
14236 (__sincos_code): Remove define and undefine.
14237 [__FAST_MATH__] (__sincos): Remove inline function.
14238 [__FAST_MATH__] (__sincosf): Remove inline function.
14239 [__FAST_MATH__] (__sincosl): Remove inline function.
14240 (__atan2l): Remove inline functions.
14241 [!__GNUC_PREREQ (3, 4)] (__atan2_code): Remove macro.
14242 [!__GNUC_PREREQ (3, 4) && __FAST_MATH__] (atan2): Remove inline
14243 function.
14244 (floor): Remove inline function.
14245 (ceil): Likewise.
14246 [__FAST_MATH__] (__ldexp_code): Remove macro.
14247 [__FAST_MATH__] (ldexp): Remove inline function.
14248 [__FAST_MATH__ && __USE_ISOC99] (ldexpf): Likewise.
14249 [__FAST_MATH__ && __USE_ISOC99] (ldexpl): Likewise.
14250 [__FAST_MATH__ && __USE_ISOC99] (rint): Likewise.
14251 [__USE_ISOC99] (__lrint_code): Remove macro.
14252 [__USE_ISOC99] (__llrint_code): Likewise.
14253 [__USE_ISOC99] (lrintf): Remove inline function.
14254 [__USE_ISOC99] (lrint): Likewise.
14255 [__USE_ISOC99] (lrintl): Likewise.
14256 [__USE_ISOC99] (llrint): Likewise.
14257 [__USE_ISOC99] (llrintf): Likewise.
14258 [__USE_ISOC99] (llrintl): Likewise.
14259
14260 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14261
14262 * sysdeps/aarch64/fpu/math_private.h (__ieee754_sqrt): Remove.
14263 (__ieee754_sqrtf): Remove.
14264 * sysdeps/alpha/fpu/math_private.h (__ieee754_sqrt): Remove.
14265 (__ieee754_sqrtf): Remove.
14266 * sysdeps/generic/math-type-macros.h (M_SQRT): Use sqrt.
14267 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
14268 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Remove.
14269 (__ieee754_sqrtf): Remove.
14270 * sysdeps/s390/fpu/bits/mathinline.h: Remove file.
14271 * sysdeps/sparc/fpu/bits/mathinline.h (sqrt) Remove.
14272 (sqrtf): Remove.
14273 (sqrtl): Remove.
14274 (__ieee754_sqrt): Remove.
14275 (__ieee754_sqrtf): Remove.
14276 (__ieee754_sqrtl): Remove.
14277 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
14278 * sysdeps/x86/fpu/math_private.h (__ieee754_sqrt): Remove.
14279 * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Remove.
14280 (__ieee754_sqrtf): Remove.
14281 (__ieee754_sqrtl): Remove.
14282
14283 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14284
14285 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Use sqrt.
14286 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Likewise.
14287 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
14288 * sysdeps/ieee754/dbl-64/e_j0.c (__ieee754_j0): Likewise.
14289 * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1): Likewise.
14290 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
14291 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
14292 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
14293 Likewise.
14294 * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Likewise.
14295 * sysdeps/ieee754/flt-32/e_acoshf.c (__ieee754_acoshf): Likewise.
14296 * sysdeps/ieee754/flt-32/e_asinf.c (__ieee754_asinf): Likewise.
14297 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
14298 * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Likewise.
14299 * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_j0f): Likewise.
14300 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_j1f): Likewise.
14301 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
14302 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
14303 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
14304 * sysdeps/ieee754/ldbl-128/e_acosl.c (__ieee754_acosl): Likewise.
14305 * sysdeps/ieee754/ldbl-128/e_asinl.c (__ieee754_asinl): Likewise.
14306 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive): Likewise.
14307 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl): Likewise.
14308 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Likewise.
14309 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
14310 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
14311 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
14312 * sysdeps/ieee754/ldbl-128/s_asinhl.c (__ieee754_asinhl): Likewise.
14313 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Likewise.
14314 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
14315 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
14316 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive): Likewise.
14317 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Likewise.
14318 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (__ieee754_j0l): Likewise.
14319 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (__ieee754_j1l): Likewise
14320 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
14321 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
14322 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__ieee754_asinhl): Likewise.
14323 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
14324 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
14325 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive): Likewise.
14326 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
14327 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
14328 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
14329 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
14330 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__ieee754_asinhl): Likewise.
14331 * sysdeps/m68k/m680x0/fpu/e_pow.c (__ieee754_pow): Likewise.
14332 * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Likewise.
14333 * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Likewise.
14334
14335 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14336
14337 * include/math.h (sqrt): Declare with asm redirect.
14338 (sqrtf): Likewise.
14339 (sqrtl): Likewise.
14340 (sqrtf128): Likewise.
14341 * Makeconfig: Add -fno-math-errno for libc/libm, but build testsuite,
14342 nonlib and libnldbl with -fmath-errno.
14343 * math/w_sqrt_compat.c: Define NO_MATH_REDIRECT.
14344 * math/w_sqrt_template.c: Likewise.
14345 * math/w_sqrtf_compat.c: Likewise.
14346 * math/w_sqrtl_compat.c: Likewise.
14347 * sysdeps/i386/fpu/w_sqrt.c: Likewise.
14348 * sysdeps/i386/fpu/w_sqrt_compat.c: Likewise.
14349 * sysdeps/generic/math-type-macros-float128.h: Remove math.h and
14350 complex.h.
14351
14352 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14353
14354 * benchtests/Makefile: Define _ISOMAC.
14355 * benchtests/bench-strcoll.c: Add missing sys/stat.h include.
14356 * benchtests/bench-string.h: Define inhibit_loop_to_libcall macro.
14357 * benchtests/bench-strstr.c: Define empty libc_hidden_builtin_def.
14358 * benchtests/bench-strtok.c (oldstrtok): Use rawmemchr.
14359 * benchtests/bench-timing.h: Define attribute_hidden.
14360
14361 2018-03-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
14362
14363 * sysdeps/aarch64/strncmp.S (strncmp): Use lsr instead of
14364 mov + lsr.
14365
14366 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14367
14368 [BZ #22963]
14369 * localedata/locales/cs_CZ (mon): Rename to...
14370 (alt_mon): This.
14371 (mon): Import from CLDR (genitive case).
14372
14373 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14374
14375 [BZ #22937]
14376 * localedata/locales/el_CY (abmon): Rename to...
14377 (ab_alt_mon): This.
14378 (abmon): Import from CLDR (abbreviated genitive case).
14379 * localedata/locales/el_GR (abmon): Rename to...
14380 (ab_alt_mon): This.
14381 (abmon): Import from CLDR (abbreviated genitive case).
14382
14383 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14384
14385 [BZ #22932]
14386 * localedata/locales/lt_LT (abmon): Synchronize with CLDR.
14387
14388 2018-03-15 Robert Buj <robert.buj@gmail.com>
14389
14390 [BZ #22848]
14391 * localedata/locales/ca_ES (abmon): Rename to...
14392 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
14393 (mon): Rename to...
14394 (alt_mon): This.
14395 (abmon): Import from CLDR (genitive case, month names preceded by
14396 "de" or "d’").
14397 (mon): Likewise.
14398 (abday): Synchronize with CLDR.
14399 (d_t_fmt): Likewise.
14400 (d_fmt): Likewise.
14401 (am_pm): Likewise.
14402
14403 (LC_TIME): Improve indentation.
14404 (LC_TELEPHONE): Likewise.
14405 (LC_NAME): Likewise.
14406 (LC_ADDRESS): Likewise.
14407
14408 2018-03-14 Joseph Myers <joseph@codesourcery.com>
14409
14410 * sysdeps/x86/fpu/bits/mathinline.h [!__GNUC_PREREQ (3, 4)]
14411 (lrintf): Remove definitions used only with old GCC.
14412 [!__GNUC_PREREQ (3, 4)] (lrint): Likewise.
14413 [!__GNUC_PREREQ (3, 4)] (llrintf): Likewise.
14414 [!__GNUC_PREREQ (3, 4)] (llrint): Likewise.
14415 [!__GNUC_PREREQ (3, 4)] (fmaxf): Likewise.
14416 [!__GNUC_PREREQ (3, 4)] (fmax): Likewise.
14417 [!__GNUC_PREREQ (3, 4)] (fminf): Likewise.
14418 [!__GNUC_PREREQ (3, 4)] (fmin): Likewise.
14419 [!__GNUC_PREREQ (3, 4)] (rint): Likewise.
14420 [!__GNUC_PREREQ (3, 4)] (rintf): Likewise.
14421 [!__GNUC_PREREQ (3, 4)] (nearbyint): Likewise.
14422 [!__GNUC_PREREQ (3, 4)] (nearbyintf): Likewise.
14423 [!__GNUC_PREREQ (3, 4)] (ceil): Likewise.
14424 [!__GNUC_PREREQ (3, 4)] (ceilf): Likewise.
14425 [!__GNUC_PREREQ (3, 4)] (floor): Likewise.
14426 [!__GNUC_PREREQ (3, 4)] (floorf): Likewise.
14427 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (tan): Likewise.
14428 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (fmod): Likewise.
14429 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (sin): Likewise.
14430 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (cos): Likewise.
14431 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log10): Likewise.
14432 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (asin): Likewise.
14433 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (acos): Likewise.
14434 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (atan): Likewise.
14435 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log1p): Likewise.
14436 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (logb): Likewise.
14437 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log2): Likewise.
14438 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (drem): Likewise.
14439 [__FAST_MATH__] (__M_SQRT2): Remove macro.
14440
14441 2018-03-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
14442
14443 * sysdeps/aarch64/strncmp.S (strncmp): Use a separate shift
14444 instruction to unbreak builds with binutils 2.26 and older.
14445
14446 2018-03-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
14447
14448 * sysdeps/aarch64/strncmp.S (count): New macro.
14449 (strncmp): Store misaligned length in SRC1 in COUNT.
14450 (mutual_align): Adjust.
14451 (misaligned8): Load dword at a time when it is safe.
14452
14453 2018-03-12 Zack Weinberg <zackw@panix.com>
14454
14455 [BZ #1190]
14456 [BZ #19476]
14457 * libio/fileops.c (_IO_new_file_underflow): Return EOF immediately
14458 if the _IO_EOF_SEEN bit is already set; update commentary.
14459 * libio/oldfileops.c (_IO_old_file_underflow): Likewise.
14460 * libio/wfileops.c (_IO_wfile_underflow): Likewise.
14461
14462 * support/support_openpty.c, support/tty.h: New files.
14463 * support/Makefile (libsupport-routines): Add support_openpty.
14464
14465 * libio/tst-fgetc-after-eof.c, wcsmbs/test-fgetwc-after-eof.c:
14466 New test cases.
14467 * libio/Makefile (tests): Add tst-fgetc-after-eof.
14468 * wcsmbs/Makefile (tests): Add tst-fgetwc-after-eof.
14469
14470 2018-03-12 Dmitry V. Levin <ldv@altlinux.org>
14471
14472 * po/pt_BR.po: Update translations.
14473
14474 2018-03-12 David Michael <fedora.dm0@gmail.com>
14475
14476 * sysdeps/mach/hurd/reboot.c: Include <hurd/paths.h>
14477 (reboot): Lookup _SERVERS_STARTUP instead of calling proc_getmsgport to
14478 get a port to the startup server.
14479
14480 2018-03-11 Zack Weinberg <zackw@panix.com>
14481
14482 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Include math.h
14483 before nldbl-compat.h.
14484
14485 2018-03-10 Zack Weinberg <zackw@panix.com>
14486
14487 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Don't include
14488 math.h or math_private.h.
14489
14490 * sysdeps/alpha/fpu/s_isnan.c
14491 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c
14492 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c
14493 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c
14494 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c
14495 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c
14496 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c
14497 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c
14498 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c
14499 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c
14500 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c
14501 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c:
14502 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf.c
14503 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c
14504 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c:
14505 Include math_private.h.
14506
14507 * sysdeps/ieee754/ldbl-64-128/s_finitel.c
14508 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c
14509 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c
14510 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c
14511 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c
14512 * sysdeps/powerpc/power7/fpu/s_logb.c:
14513 Include math.h and math_private.h.
14514
14515 * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Wrap manual
14516 uses of $at in .set noat / .set at.
14517
14518 2018-03-10 H.J. Lu <hongjiu.lu@intel.com>
14519
14520 * include/setjmp.h (__libc_longjmp): Remove libc_hidden_proto.
14521 * setjmp/longjmp.c (__libc_longjmp): Remove libc_hidden_def.
14522 * sysdeps/s390/longjmp.c (__libc_longjmp): Likewise.
14523 * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S (__libc_longjmp):
14524 Likewise.
14525
14526 2018-03-09 Florian Weimer <fweimer@redhat.com>
14527
14528 * malloc/malloc.c (prev_size, set_prev_size, prev_chunk): Fix typo
14529 in comment.
14530
14531 2018-03-09 Aurelien Jarno <aurelien@aurel32.net>
14532
14533 [BZ #22919]
14534 * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S (__startcontext):
14535 Add nop before __startcontext, add explaining comments.
14536
14537 2018-03-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14538
14539 [BZ #22926]
14540 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Define
14541 empty for __SPE__.
14542 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
14543 * sysdeps/unix/sysv/linux/powerpc/elision-lock.c (__lll_lock_elision):
14544 Do not build hardware transactional code for __SPE__.
14545 * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c
14546 (__lll_trylock_elision): Likewise.
14547 * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c
14548 (__lll_unlock_elision): Likewise.
14549
14550 * sysdeps/nptl/fork.c (ARCH_FORK): Replace by arch_fork.
14551 * sysdeps/unix/sysv/linux/alpha/arch-fork.h: Remove file.
14552 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
14553 * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: Likewise.
14554 * sysdeps/unix/sysv/linux/arm/arch-fork.h: Likewise.
14555 * sysdeps/unix/sysv/linux/hppa/arch-fork.h: Likewise.
14556 * sysdeps/unix/sysv/linux/i386/arch-fork.h: Likewise.
14557 * sysdeps/unix/sysv/linux/ia64/arch-fork.h: Likewise.
14558 * sysdeps/unix/sysv/linux/m68k/arch-fork.h: Likewise.
14559 * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: Likewise.
14560 * sysdeps/unix/sysv/linux/mips/arch-fork.h: Likewise.
14561 * sysdeps/unix/sysv/linux/nios2/arch-fork.h: Likewise.
14562 * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: Likewise.
14563 * sysdeps/unix/sysv/linux/s390/arch-fork.h: Likewise.
14564 * sysdeps/unix/sysv/linux/sh/arch-fork.h: Likewise.
14565 * sysdeps/unix/sysv/linux/sparc/arch-fork.h: Likewise.
14566 * sysdeps/unix/sysv/linux/tile/arch-fork.h: Likewise.
14567 * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: Likewise.
14568 * sysdeps/unix/sysv/linux/arch-fork.h (arch_fork): New function.
14569 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h: New file.
14570 * sysdeps/unix/sysv/linux/riscv/kernel-features.h: Likewise.
14571 * sysdeps/unix/sysv/linux/arm/kernel-features.h
14572 (__ASSUME_CLONE_BACKWARDS): Define.
14573 * sysdeps/unix/sysv/linux/createthread.c (ARCH_CLONE): Define to
14574 __clone2 if __NR_clone2 is defined.
14575 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
14576 (__ASSUME_CLONE_BACKWARDS): Likewise.
14577 * sysdeps/unix/sysv/linux/i386/kernel-features.h
14578 (__ASSUME_CLONE_BACKWARDS): Likewise.
14579 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14580 (__ASSUME_CLONE2): Likewise.
14581 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14582 (__ASSUME_CLONE_BACKWARDS3): Likewise.
14583 * sysdeps/unix/sysv/linux/kernel-features.h: Document possible clone
14584 variants and the define architecture can use.
14585 (__ASSUME_CLONE_DEFAULT): Define as default.
14586 * sysdeps/unix/sysv/linux/mips/kernel-features.h
14587 (__ASSUME_CLONE_BACKWARDS): Likewise.
14588 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
14589 (__ASSUME_CLONE_BACKWARDS): Likewise.
14590 * sysdeps/unix/sysv/linux/s390/kernel-features.h
14591 (__ASSUME_CLONE_BACKWARDS2): Likewise.
14592
14593 2018-03-06 Siddhesh Poyarekar <siddhesh@sourceware.org>
14594
14595 * sysdeps/aarch64/memcmp.S (more16): Fix loop16 branch target.
14596
14597 * sysdeps/aarch64/memcmp.S: Widen comparison to 16 bytes at a
14598 time.
14599
14600 * benchtests/bench-strncmp.c (test_main): Remove 0 length tests.
14601 (do_test_limit): Likewise.
14602
14603 * benchtests/bench-strncmp.c (do_test_limit): Reallocate buffers
14604 for every implementation.
14605 (do_test): Likewise.
14606
14607 * benchtests/bench-strncmp.c: Convert output to json.
14608
14609 2018-03-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
14610
14611 * io/futimens.c: Add missing start-of-file descriptive comment.
14612 * io/utime.c: Likewise.
14613 * misc/futimesat.c: Likewise.
14614 * misc/utimes.c: Likewise.
14615 * sysdeps/mach/hurd/futimesat.c: Likewise.
14616 * sysdeps/mach/hurd/utimes.c: Likewise.
14617 * sysdeps/posix/utime.c: Likewise.
14618 * sysdeps/posix/utimes.c: Likewise.
14619 * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
14620 * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
14621 * sysdeps/unix/sysv/linux/generic/utimes.c: Likewise.
14622 * sysdeps/unix/sysv/linux/utimes.c: Likewise.
14623
14624 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
14625
14626 * sysdeps/mach/hurd/utime-helper.c (hurd_futimens): Rename function to
14627 hurd_futimes.
14628 * sysdeps/mach/hurd/utimes.c (__utimes): Update call accordingly.
14629 * sysdeps/mach/hurd/lutimes.c (__lutimes): Likewise.
14630 * sysdeps/mach/hurd/futimens.c: Include "utime-helper.c".
14631 (__futimens): Move implementation to...
14632 * sysdeps/mach/hurd/utime-helper.c (utime_ts_from_tspec,
14633 utime_tvalue_from_tspec): ... new helper functions.
14634 (hurd_futimens): New function.
14635 * sysdeps/mach/hurd/futimesat.c: New file.
14636 * sysdeps/mach/hurd/utimensat.c: New file.
14637
14638 2018-03-05 Flávio Cruz <flaviocruz@gmail.com>
14639
14640 * sysdeps/mach/hurd/bits/stat.h [__USE_ATFILE] (UTIME_NOW,
14641 UTIME_OMIT): New macros.
14642 * sysdeps/mach/hurd/futimens.c (__futimens): Try to use __file_utimens
14643 before reverting to converting time spec to time value and calling
14644 __file_utimes.
14645 * sysdeps/mach/hurd/utime-helper.c: New file.
14646 * sysdeps/mach/hurd/futimes.c: Include "utime-helper.c".
14647 (__futimes): Try to use utime_ts_from_tval and __file_utimens before
14648 reverting to utime_tvalue_from_tval and __file_utimes.
14649 * sysdeps/mach/hurd/lutimes.c: Include "utime-helper.c".
14650 (__lutimes): Just call hurd_futimens after lookup.
14651 * sysdeps/mach/hurd/utimes.c: Likewise.
14652
14653 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
14654
14655 * bits/sigaction.h: Add include guard.
14656 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Likewise.
14657 * sysdeps/unix/sysv/linux/bits/sigaction.h: Likewise.
14658 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h: Likewise.
14659 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h: Likewise.
14660 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Likewise.
14661 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h: Likewise.
14662 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise.
14663 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h: Likewise.
14664 * hurd/hurd/signal.h: Include <bits/sigaction.h>.
14665
14666 2018-03-05 Joseph Myers <joseph@codesourcery.com>
14667
14668 * iconv/loop.c (UNICODE_TAG_HANDLER): Disable
14669 -Wmaybe-uninitialized for -Os.
14670 * sysdeps/s390/multiarch/8bit-generic.c (BODY): Add comment about
14671 this disabling.
14672
14673 2018-03-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14674
14675 * bits/dirent.h (__INO_T_MATCHES_INO64_T): Define regardless whether
14676 __INO_T_MATCHES_INO64_T is defined.
14677 * sysdeps/unix/sysv/linux/bits/dirent.h: Likewise.
14678 * dirent/alphasort.c: Check _DIRENT_MATCHES_DIRENT64 value instead
14679 of definition.
14680 * dirent/alphasort64.c: Likewise.
14681 * dirent/scandir.c: Likewise.
14682 * dirent/scandir64-tail.c: Likewise.
14683 * dirent/scandir64.c: Likewise.
14684 * dirent/scandirat.c: Likewise.
14685 * dirent/scandirat64.c: Likewise.
14686 * dirent/versionsort.c: Likewise.
14687 * dirent/versionsort64.c: Likewise.
14688 * include/dirent.h: Likewise.
14689
14690 * nptl/tst-cancel4-common.h (set_socket_buffer): New function.
14691 * nptl/tst-cancel4-common.c (do_test): Call set_socket_buffer
14692 for socketpair endpoint.
14693 * nptl/tst-cancel4.c (tf_send): Call set_socket_buffer and use
14694 WRITE_BUFFER_SIZE as buffer size for sending socket.
14695 (tf_sendto): Use SOCK_STREAM instead of SOCK_DGRAM and fix an
14696 issue on system where send is implemented with sendto syscall.
14697 * sysdeps/unix/sysv/linux/mips/mips64/Makefile [$(subdir) = socket]
14698 (CFLAGS-recv.c, CFLAGS-send.c): Remove rules.
14699 [$(subdir) = nptl] (CFLAGS-recv.c, CFLAGS-send.c): Likewise.
14700 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Remove file.
14701
14702 [BZ #21269]
14703 * sysdeps/unix/sysv/linux/i386/Makefile (tests): Add tst-bz21269.
14704 * sysdeps/unix/sysv/linux/i386/sigaction.c (SET_SA_RESTORER): Clear
14705 sa_restorer for vDSO case.
14706 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c: New file.
14707
14708 2018-03-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
14709
14710 * scripts/check-installed-headers.sh: Ignore Hurd and Mach headers.
14711 * hurd/hurd/id.h: Include <hurd/hurd_types.h>
14712 * hurd/hurd/ioctl.h: Include <mach/port.h>
14713 * hurd/hurd/lookup.h: Include <hurd/hurd_types.h>
14714 * mach/Makefile ($(objpfx)mach-shortcuts.h): Make it include
14715 <mach/mach_types.h> and <mach/message.h>.
14716 (headers): Move mach/param.h to bits/mach/param.h.
14717 * sysdeps/mach/i386/mach/param.h: Move file to ...
14718 * sysdeps/mach/i386/bits/mach/param.h: ... here. Update path in #error.
14719 * sysdeps/mach/hurd/bits/param.h: Include <bits/mach/param.h> instead
14720 of <mach/param.h>.
14721 * hurd/hurd/port.h: Do not include <hurd/signal.h>.
14722 * hurd/hurd/userlink.h [!defined __USE_EXTERN_INLINES ||
14723 !defined _LIBC || !IS_IN (libc)]: Do not include <hurd/signal.h>.
14724 * hurd/hurd/fd.h (_hurd_fd_error): Fix struct initializer to be
14725 trivial, for C++ conformity.
14726 * sysdeps/mach/hurd/dl-sysdep.c: Include <mach/machine/vm_param.h>.
14727 * mach/Machrules ($(patsubst %,$(objpfx)%.h,$(user-interfaces)):
14728 Process mig output through $(migheadersed).
14729 * hurd/Makefile (migheadersed): Define variable.
14730 * mach/mach/mig_support.h [defined __USE_GNU]: Do not #error out.
14731 * scripts/check-installed-headers.sh: Do not ignore Hurd and Mach
14732 headers.
14733 * hurd/hurd.h: Include <bits/types/sigset_t.h>
14734 * hurd/hurd/fd.h: Include <sys/select.h> and <bits/types/sigset_t.h>
14735 (_hurd_fd_read, _hurd_fd_write): Use __loff_t instead of loff_t.
14736 * hurd/hurd/signal.h: Include <bits/types/stack_t.h> and
14737 <bits/types/sigset_t.h>.
14738 [!defined __USE_GNU]: Do not #error out.
14739 (struct hurd_sigstate): Use _NSIG instead of NSIG.
14740 * hurd/hurd/sigpreempt.h (__need_size_t): Define.
14741 Include <stddef.h> and <bits/types/sigset_t.h>
14742 (struct hurd_signal_preemptor, hurd_catch_signal): Use __sighandler_t
14743 instead of sighandler_t.
14744 * stdlib/errno.h (error_t): Move definition to...
14745 * bits/types/error_t.h: ... new header.
14746 * stdlib/Makefile (headers): Add bits/types/error_t.h.
14747 * sysdeps/mach/hurd/bits/errno.h (error_t): Move definition to...
14748 * sysdeps/mach/hurd/bits/types/error_t.h: ... new header.
14749 * sysdeps/mach/hurd/errnos.awk (error_t): Likewise.
14750 * hurd/hurd.h: Include <bits/types/error_t.h>
14751 * hurd/hurd/fd.h: Include <bits/types/error_t.h>
14752 * hurd/hurd/id.h: Include <errno.h> and <bits/types/error_t.h>
14753 * hurd/hurd/lookup.h: Include <errno.h> and <bits/types/error_t.h>
14754 * hurd/hurd/resource.h: Include <bits/types/error_t.h>
14755 * hurd/hurd/signal.h: Include <bits/types/error_t.h>
14756 * hurd/hurd/sigpreempt.h: Include <bits/types/error_t.h>
14757 * sysdeps/mach/hurd/futimens.c: New file.
14758
14759 2018-03-03 Andreas Schwab <schwab@linux-m68k.org>
14760
14761 [BZ #22918]
14762 * nss/nsswitch.h (DEFINE_DATABASE): Don't define __nss_*_database.
14763 * nss/nsswitch.c (DEFINE_DATABASE): Define __nss_*_database here.
14764 * nscd/gai.c (__nss_hosts_database): Readd definition.
14765 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
14766 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
14767 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
14768
14769 2018-03-02 Joseph Myers <joseph@codesourcery.com>
14770
14771 * sysdeps/powerpc/ifunc-sel.h (ifunc_sel): Make always_inline.
14772 (ifunc_one): Likewise.
14773
14774 2018-03-01 DJ Delorie <dj@delorie.com>
14775
14776 [BZ #22342]
14777 * nscd/netgroupcache.c (addinnetgrX): Include trailing NUL in
14778 key value.
14779
14780 2018-03-01 Maciej W. Rozycki <macro@mips.com>
14781
14782 * nptl_db/td_ta_thr_iter.c (iterate_thread_list): Remove
14783 `match_pid' parameter.
14784 (td_ta_thr_iter): Update accordingly.
14785
14786 2018-03-01 Florian Weimer <fweimer@redhat.com>
14787
14788 * nptl/Makefile (install-lib-ldscripts): Remove.
14789 (install): Remove rule.
14790 ($(inst_libdir)/libpthread.so): Likewise.
14791
14792 2018-03-01 Mike FABIAN <mfabian@redhat.com>
14793
14794 [BZ #22896]
14795 * localedata/locales/an_ES: update month and day names,
14796 improve d_fmt, improve postal_fmt, add country_post,
14797 add country_isbn
14798
14799 2018-03-01 Mike FABIAN <mfabian@redhat.com>
14800
14801 * localedata/locales/bg_BG (LC_COLLATE): The comment mentioned
14802 Ukrainian instead of Bulgarian.
14803
14804 2018-03-01 Florian Weimer <fweimer@redhat.com>
14805
14806 * nptl/Makefile (libpthread.so): Drop libpthread_nonshared.a
14807 reference.
14808
14809 2018-03-01 Florian Weimer <fweimer@redhat.com>
14810
14811 Move pthread_atfork to libc. Remove libpthread_nonshared.a.
14812 * nptl/Makefile (routines): Add pthread_atfork.
14813 (static-only-routines): Set to pthread_atfork.
14814 (libpthread-routines): Remove pthread_atfork.
14815 (libpthread-static-only-routines): Remove.
14816 (install): Update comment.
14817 (libpthread.so): Do not install libpthread_nonshared.a.
14818 (tests): Do not link with libpthread_nonshared.a.
14819 (generated): Remove libpthread_nonshared.a.
14820 * nptl/pthread_atfork.c (pthread_atfork): Turn into weak alias.
14821 * sysdeps/nptl/Makeconfig (shared-thread-library): Do not link
14822 with libpthread_nonshared.a.
14823
14824 2018-02-28 Joseph Myers <joseph@codesourcery.com>
14825
14826 [BZ #22902]
14827 * sysdeps/i386/fpu/fenv_private.h [!__x86_64__]
14828 (libc_feholdexcept_setroundf128): New macro.
14829 [!__x86_64__] (libc_feupdateenv_testf128): Likewise.
14830
14831 [BZ #15105]
14832 * sysdeps/wordsize-32/strtoumax.c (strtoumax): Use
14833 libc_hidden_def.
14834 * sysdeps/wordsize-64/strtoumax.c (strtoumax): Likewise.
14835 * include/inttypes.h: New file.
14836
14837 2018-02-27 Joseph Myers <joseph@codesourcery.com>
14838
14839 * locale/weightwc.h (findidx): Ignore -Wmaybe-uninitialized for
14840 -Os in two more places.
14841
14842 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14843
14844 See this bug https://sourceware.org/bugzilla/show_bug.cgi?id=22898
14845 * localedata/cmn_TW.UTF-8.in: Remove the lines which cannot
14846 be sorted correctly at the moment because of a bug.
14847
14848 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14849
14850 [BZ #22550] - es_ES locale (and other es_* locales): collation should
14851 treat ñ as a primary different character, sync the collation
14852 for Spanish with CLDR.
14853 [BZ #21547] - Tibetan script collation broken (Dzongkha and Tibetan).
14854 * localedata/Makefile: Add new test files.
14855 * localedata/lv_LV.UTF-8.in: Adapt test file to new collation order.
14856 * localedata/sv_SE.ISO-8859-1.in: Adapt test file to new
14857 collation order.
14858 * localedata/uk_UA.UTF-8.in: Adapt test file to new collation order.
14859 * localedata/am_ET.UTF-8.in: New test file.
14860 * localedata/az_AZ.UTF-8.in: Likewise.
14861 * localedata/be_BY.UTF-8.in: Likewise.
14862 * localedata/ber_DZ.UTF-8.in: Likewise.
14863 * localedata/ber_MA.UTF-8.in: Likewise.
14864 * localedata/bg_BG.UTF-8.in: Likewise.
14865 * localedata/br_FR.UTF-8.in: Likewise.
14866 * localedata/cmn_TW.UTF-8.in: Likewise.
14867 * localedata/crh_UA.UTF-8.in: Likewise.
14868 * localedata/csb_PL.UTF-8.in: Likewise.
14869 * localedata/cv_RU.UTF-8.in: Likewise.
14870 * localedata/cy_GB.UTF-8.in: Likewise.
14871 * localedata/dz_BT.UTF-8.in: Likewise.
14872 * localedata/eo.UTF-8.in: Likewise.
14873 * localedata/es_ES.UTF-8.in: Likewise.
14874 * localedata/fa_IR.UTF-8.in: Likewise.
14875 * localedata/fi_FI.UTF-8.in: Likewise.
14876 * localedata/fil_PH.UTF-8.in: Likewise.
14877 * localedata/fur_IT.UTF-8.in: Likewise.
14878 * localedata/gez_ER.UTF-8@abegede.in: Likewise.
14879 * localedata/ha_NG.UTF-8.in: Likewise.
14880 * localedata/ig_NG.UTF-8.in: Likewise.
14881 * localedata/ik_CA.UTF-8.in: Likewise.
14882 * localedata/kk_KZ.UTF-8.in: Likewise.
14883 * localedata/ku_TR.UTF-8.in: Likewise.
14884 * localedata/ky_KG.UTF-8.in: Likewise.
14885 * localedata/ln_CD.UTF-8.in: Likewise.
14886 * localedata/mi_NZ.UTF-8.in: Likewise.
14887 * localedata/ml_IN.UTF-8.in: Likewise.
14888 * localedata/mn_MN.UTF-8.in: Likewise.
14889 * localedata/mr_IN.UTF-8.in: Likewise.
14890 * localedata/mt_MT.UTF-8.in: Likewise.
14891 * localedata/nb_NO.UTF-8.in: Likewise.
14892 * localedata/om_KE.UTF-8.in: Likewise.
14893 * localedata/os_RU.UTF-8.in: Likewise.
14894 * localedata/ps_AF.UTF-8.in: Likewise.
14895 * localedata/ro_RO.UTF-8.in: Likewise.
14896 * localedata/ru_RU.UTF-8.in: Likewise.
14897 * localedata/sc_IT.UTF-8.in: Likewise.
14898 * localedata/se_NO.UTF-8.in: Likewise.
14899 * localedata/sq_AL.UTF-8.in: Likewise.
14900 * localedata/sv_SE.UTF-8.in: Likewise.
14901 * localedata/szl_PL.UTF-8.in: Likewise.
14902 * localedata/tg_TJ.UTF-8.in: Likewise.
14903 * localedata/tk_TM.UTF-8.in: Likewise.
14904 * localedata/tt_RU.UTF-8.in: Likewise.
14905 * localedata/tt_RU.UTF-8@iqtelif.in: Likewise.
14906 * localedata/ug_CN.UTF-8.in: Likewise.
14907 * localedata/uz_UZ.UTF-8.in: Likewise.
14908 * localedata/vi_VN.UTF-8.in: Likewise.
14909 * localedata/yi_US.UTF-8.in: Likewise.
14910 * localedata/yo_NG.UTF-8.in: Likewise.
14911 * localedata/zh_CN.UTF-8.in: Likewise.
14912 * localedata/locales/am_ET: Adapt collation rules to new iso14651_t1_common
14913 file and fix bugs in the collation.
14914 * localedata/locales/az_AZ: Likewise.
14915 * localedata/locales/be_BY: Likewise.
14916 * localedata/locales/ber_DZ: Likewise.
14917 * localedata/locales/ber_MA: Likewise.
14918 * localedata/locales/bg_BG: Likewise.
14919 * localedata/locales/br_FR: Likewise.
14920 * localedata/locales/br_FR@euro: Likewise.
14921 * localedata/locales/ca_ES: Likewise.
14922 * localedata/locales/cns11643_stroke: Likewise.
14923 * localedata/locales/crh_UA: Likewise.
14924 * localedata/locales/cs_CZ: Likewise.
14925 * localedata/locales/csb_PL: Likewise.
14926 * localedata/locales/cv_RU: Likewise.
14927 * localedata/locales/cy_GB: Likewise.
14928 * localedata/locales/da_DK: Likewise.
14929 * localedata/locales/dz_BT: Likewise.
14930 * localedata/locales/en_CA: Likewise.
14931 * localedata/locales/eo: Likewise.
14932 * localedata/locales/es_CU: Likewise.
14933 * localedata/locales/es_EC: Likewise.
14934 * localedata/locales/es_ES: Likewise.
14935 * localedata/locales/es_US: Likewise.
14936 * localedata/locales/et_EE: Likewise.
14937 * localedata/locales/fa_IR: Likewise.
14938 * localedata/locales/fi_FI: Likewise.
14939 * localedata/locales/fil_PH: Likewise.
14940 * localedata/locales/fur_IT: Likewise.
14941 * localedata/locales/gez_ER@abegede: Likewise.
14942 * localedata/locales/ha_NG: Likewise.
14943 * localedata/locales/hr_HR: Likewise.
14944 * localedata/locales/hsb_DE: Likewise.
14945 * localedata/locales/hu_HU: Likewise.
14946 * localedata/locales/ig_NG: Likewise.
14947 * localedata/locales/ik_CA: Likewise.
14948 * localedata/locales/is_IS: Likewise.
14949 * localedata/locales/iso14651_t1_pinyin: Likewise.
14950 * localedata/locales/kk_KZ: Likewise.
14951 * localedata/locales/ku_TR: Likewise.
14952 * localedata/locales/ky_KG: Likewise.
14953 * localedata/locales/ln_CD: Likewise.
14954 * localedata/locales/lt_LT: Likewise.
14955 * localedata/locales/lv_LV: Likewise.
14956 * localedata/locales/mi_NZ: Likewise.
14957 * localedata/locales/ml_IN: Likewise.
14958 * localedata/locales/mn_MN: Likewise.
14959 * localedata/locales/mr_IN: Likewise.
14960 * localedata/locales/mt_MT: Likewise.
14961 * localedata/locales/nb_NO: Likewise.
14962 * localedata/locales/om_KE: Likewise.
14963 * localedata/locales/os_RU: Likewise.
14964 * localedata/locales/pl_PL: Likewise.
14965 * localedata/locales/ps_AF: Likewise.
14966 * localedata/locales/ro_RO: Likewise.
14967 * localedata/locales/ru_RU: Likewise.
14968 * localedata/locales/ru_UA: Likewise.
14969 * localedata/locales/sc_IT: Likewise.
14970 * localedata/locales/se_NO: Likewise.
14971 * localedata/locales/si_LK: Likewise.
14972 * localedata/locales/sq_AL: Likewise.
14973 * localedata/locales/sv_FI: Likewise.
14974 * localedata/locales/sv_FI@euro: Likewise.
14975 * localedata/locales/sv_SE: Likewise.
14976 * localedata/locales/szl_PL: Likewise.
14977 * localedata/locales/tg_TJ: Likewise.
14978 * localedata/locales/ti_ER: Likewise.
14979 * localedata/locales/tk_TM: Likewise.
14980 * localedata/locales/tl_PH: Likewise.
14981 * localedata/locales/tr_TR: Likewise.
14982 * localedata/locales/tt_RU: Likewise.
14983 * localedata/locales/tt_RU@iqtelif: Likewise.
14984 * localedata/locales/ug_CN: Likewise.
14985 * localedata/locales/uk_UA: Likewise.
14986 * localedata/locales/uz_UZ: Likewise.
14987 * localedata/locales/uz_UZ@cyrillic: Likewise.
14988 * localedata/locales/vi_VN: Likewise.
14989 * localedata/locales/yi_US: Likewise.
14990 * localedata/locales/yo_NG: Likewise.
14991
14992 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14993
14994 * gen-locales.mk: Make test files which contain @ modifiers in their
14995 name work.
14996 * localedata/gen-locale.sh: Likewise.
14997
14998 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14999
15000 * posix/tst-fnmatch.input: Fix results for range expressions
15001 for non C locales.
15002 * posix/tst-regexloc.c: Do not use a range expression for
15003 de_DE.ISO-8859-1 locale.
15004
15005 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15006
15007 * posix/bug-regex5.c: Fix test case because with the new
15008 iso14651_t1_common file, the da_DK locale now has 6 collating elements
15009 in the ISO-8859-1 range instead of 4 with the old iso14651_t1_common
15010 file.
15011
15012 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15013
15014 * localedata/da_DK.ISO-8859-1.in: In the new iso14651_t1_common file
15015 downloaded from ISO, the collation order of @-. and space has changed.
15016 Therefore, this test file needed to be adapted.
15017 * localedata/fr_CA.UTF-8.in: Likewise.
15018 * localedata/fr_FR.UTF-8.in: Likewise.
15019 * localedata/uk_UA.UTF-8.in: Likewise.
15020
15021 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15022
15023 * localedata/cs_CZ.UTF-8.in: adapt this test file to the collation
15024 order of ȥ in the new iso14651_t1_common file.
15025 * localedata/pl_PL.UTF-8.in: Likewise.
15026
15027 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15028
15029 * localedata/locales/iso14651_t1_common: Add sections for various
15030 scripts to the iso14651_t1_common file.
15031
15032 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15033
15034 * localedata/locales/iso14651_t1_common: Use the code point of a
15035 character in the fourth collation level instead of IGNORE for all
15036 entries which have IGNORE on all 4 levels.
15037
15038 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15039
15040 * localedata/locales/iso14651_t1_common: Add some convenient collation
15041 symbols like <AFTER-A>, <BEFORE-A> to make tailoring easier using
15042 rules similar to those in CLDR.
15043
15044 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15045
15046 * localedata/locales/iso14651_t1_common: The new version of this
15047 file downloaded from ISO contained several syntax errors which
15048 are fixed by this patch.
15049
15050 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15051
15052 * localedata/locales/iso14651_t1_common: replace all <U.....>
15053 with <U000.....> because glibc understands only 4 digit or 8 digit
15054
15055 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15056
15057 * localedata/locales/iso14651_t1_common: Necessary changes
15058 to make the file downloaded from ISO usable by glibc.
15059
15060 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15061
15062 [BZ #14095]
15063 * localedata/locales/iso14651_t1_common: Update file to
15064 latest version from ISO (ISO14651_2016_TABLE1_en.txt).
15065
15066 2018-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
15067
15068 * sysdeps/pthread/timer_routines.c: Include <timer_routines.h> instead
15069 of <nptl/pthreadP.h>
15070 (thread_attr_compare): Move function to...
15071 [!defined DELAYTIMER_MAX] (DELAYTIMER_MAX): Define to INT_MAX.
15072 * sysdeps/nptl/timer_routines.h: ... new header.
15073 * sysdeps/mach/hurd/gai_misc.h: New file.
15074
15075 2018-02-26 Joseph Myers <joseph@codesourcery.com>
15076
15077 * string/strcoll_l.c: Include <libc-diag.h>.
15078 (STRCOLL): Ignore -Wmaybe-uninitialized for -Os around
15079 declarations of seq1 and seq2.
15080
15081 [BZ #15105]
15082 * stdlib/atoi.c (atoi): Use libc_hidden_def.
15083 * include/stdlib.h [!_ISOMAC] (atoi): Use libc_hidden_proto.
15084
15085 2018-02-26 Dmitry V. Levin <ldv@altlinux.org>
15086
15087 [BZ #22433]
15088 [BZ #22807]
15089 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (__ptrace_request): Add
15090 PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS, PTRACE_SETFPREGS,
15091 PTRACE_GETVRREGS, PTRACE_SETVRREGS, PTRACE_GETEVRREGS,
15092 PTRACE_SETEVRREGS, PTRACE_GETREGS64, PTRACE_SETREGS64,
15093 PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG, PTRACE_GETVSRREGS,
15094 PTRACE_SETVSRREGS, and PTRACE_SINGLEBLOCK.
15095
15096 2018-02-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
15097
15098 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Undefine Linux
15099 macros used in __ptrace_request.
15100
15101 2018-02-23 H.J. Lu <hongjiu.lu@intel.com>
15102
15103 [BZ #22792]
15104 * Makerules ($(common-objpfx)%.h): Pass -DGEN_AS_CONST_HEADERS
15105 to $(CC).
15106 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Include
15107 <tcb-offsets.h> only if GEN_AS_CONST_HEADERS isn't defined.
15108 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Don't include
15109 <tcb-offsets.h>.
15110
15111 2018-02-23 Joseph Myers <joseph@codesourcery.com>
15112
15113 [BZ #15105]
15114 * ctype/ctype.c (tolower): Use libc_hidden_def.
15115 (toupper): Likewise.
15116 * include/ctype.h [!_ISOMAC] (tolower): Use libc_hidden_proto.
15117 [!_ISOMAC] (toupper): Likewise.
15118
15119 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15120
15121 * localedata/Makefile: Remove --quiet argument when
15122 installing locales
15123
15124 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15125
15126 [BZ #17438]
15127 * localedata/locales/pt_BR (LC_TIME): use / instead of -
15128 in d_fmt.
15129 * localedata/locales/pt_PT (LC_TIME): likewise
15130
15131 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15132
15133 [BZ #22646]
15134 * localedata/locales/es_CL (LC_TIME): copy "es_BO".
15135 * localedata/locales/es_CU (LC_TIME): copy "es_BO".
15136 * localedata/locales/es_EC (LC_TIME): copy "es_BO".
15137
15138 2018-02-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
15139
15140 * sysdeps/sparc/fpu/libm-test-ulps: Update.
15141
15142 * nptl/Makefile (routines): Remove unregister-atfork.
15143 * nptl/register-atfork.c (fork_handler_pool): Remove variable.
15144 (fork_handler_alloc): Remove function.
15145 (fork_handlers, fork_handler_init): New variables.
15146 (__fork_lock): Rename to atfork_lock.
15147 (__register_atfork, __unregister_atfork, libc_freeres_fn): Rewrite
15148 to use a dynamic array to add/remove atfork handlers.
15149 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
15150 * sysdeps/nptl/fork.h (__fork_lock, __fork_handlers, __linkin_atfork):
15151 Remove declaration.
15152 (fork_handler): Remove next, refcntr, and need_signal member.
15153 (__run_fork_handler_type): New enum.
15154 (__run_fork_handlers): New prototype.
15155 * nptl/register-atfork.c: Remove file.
15156 * sysdeps/nptl/libc-lockP.h (__libc_atfork): Remove declaration.
15157
15158 * sysdeps/nptl/nptl-signals.h: Move to ...
15159 * sysdeps/generic/internal-signals.h: ... here. Adjust internal
15160 comments.
15161 * sysdeps/unix/sysv/linux/internal-signals.h: Add include guards.
15162 (__nptl_is_internal_signal): Rename to __is_internal_signal and remove
15163 unnecessary check for SIGTIMER.
15164 (__nptl_clear_internal_signals): Rename to __clear_internal_signals and
15165 remove unnecessary removal of SIGTIMER.
15166 * sysdeps/unix/sysv/linux/raise.c: Adjust nptl-signal.h to
15167 include-signals.h rename.
15168 * nptl/pthreadP.h: Likewise.
15169 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Call
15170 __is_internal_signal instead of __nptl_is_internal_signal.
15171
15172 2018-02-22 Andrew Waterman <andrew@sifive.com>
15173
15174 [BZ # 22884]
15175 * sysdeps/riscv/rvd/s_fmax.c (__fmax): Handle sNaNs correctly.
15176 * sysdeps/riscv/rvd/s_fmin.c (__fmin): Likewise.
15177 * sysdeps/riscv/rvf/s_fmaxf.c (__fmaxf): Likewise.
15178 * sysdeps/riscv/rvf/s_fminf.c (__fminf): Likewise.
15179
15180 2018-02-22 DJ Delorie <dj@delorie.com>
15181
15182 * sysdeps/riscv/tls-macros.h: Do not initialize $gp.
15183
15184 2018-02-22 Siddhesh Poyarekar <siddhesh@sourceware.org>
15185
15186 * sysdeps/aarch64/strcmp.S (do_misaligned): Jump back to
15187 do_misaligned, not misaligned8.
15188
15189 2018-02-22 Steve Ellcey <sellcey@cavium.com>
15190
15191 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
15192 Add memcpy_thunderx2.
15193 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
15194 Increment to 4.
15195 (__libc_ifunc_impl_list): Add __memcpy_thunderx2.
15196 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): Add IS_THUNDERX2
15197 and IS_THUNDERX2PA checks.
15198 * sysdeps/aarch64/multiarch/memcpy_thunderx.S (USE_THUNDERX2):
15199 Use macro to set name appropriately.
15200 (memcpy): Use USE_THUNDERX2 macro to modify prefetches.
15201 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New file.
15202 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_THUNDERX2PA):
15203 New macro.
15204 (IS_THUNDERX2): New macro.
15205
15206 2018-02-22 Stefan Liebler <stli@linux.vnet.ibm.com>
15207
15208 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
15209
15210 2018-02-21 Zack Weinberg <zackw@panix.com>
15211
15212 * libio/libio.h (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust):
15213 Define here, unconditionally.
15214 * libio/iolibio.h (_IO_pos_BAD): Don't define here.
15215 * libio/libioP.h: Remove #if 0 blocks.
15216 (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust): Don't define here.
15217 (_IO_va_start, COERCE_FILE, MAYBE_SET_EINVAL): Don't define.
15218 (CHECK_FILE): Don't use MAYBE_SET_EINVAL or COERCE_FILE. Fix style.
15219
15220 * libio/clearerr.c, libio/fputc.c, libio/getchar.c:
15221 Assume weak_alias is always defined.
15222
15223 * libio/fileops.c, libio/genops.c, libio/oldfileops.c
15224 * libio/oldpclose.c, libio/pclose.c, libio/wfileops.c:
15225 Remove #if 0 and #ifdef TODO blocks.
15226 Assume text_set_element is always defined.
15227
15228 * libio/iofdopen.c, libio/iogetdelim.c, libio/oldiofdopen.c
15229 Use __set_errno (EINVAL) instead of MAYBE_SET_EINVAL.
15230 * libio/tst-mmap-eofsync.c: Make #if 1 block unconditional.
15231
15232 * libio/libio.h (_IOS_ATEND, _IOS_APPEND, _IOS_TRUNC)
15233 (_IOS_NOCREATE, _IOS_NOREPLACE, _IOS_BIN, _OLD_STDIO_MAGIC)
15234 (_IO_SKIPWS, _IO_LEFT, _IO_RIGHT, _IO_INTERNAL, _IO_DEC)
15235 (_IO_OCT, _IO_HEX, _IO_SHOWBASE, _IO_SHOWPOINT, _IO_UPPERCASE)
15236 (_IO_SHOWPOS, _IO_SCIENTIFIC, _IO_FIXED, _IO_UNITBUF, _IO_STDIO)
15237 (_IO_DONT_CLOSE, _IO_BOOLALPHA, _IO_BAD_SEEN): Remove, unused.
15238 Reformat bit flags for _flags field to make occupancy clearer.
15239 Update commentary.
15240 * libio/bits/types/struct_FILE.h (_IO_EOF_SEEN, _IO_ERR_SEEN):
15241 Keep definitions consistent with those in libio/libio.h.
15242
15243 * libio/libio.h (_IO_file_flags): Remove macro.
15244 All uses changed to _flags.
15245
15246 * libio/libio.h (_IO_UNIFIED_JUMPTABLES, _STDIO_USES_IOSTREAM)
15247 (__HAVE_COLUMN, _IO_BE): Don't define.
15248 (_IO_peekc_unlocked, _IO_getwc_unlocked, _IO_putwc_unlocked)
15249 (_IO_fwide_maybe_incompatible): Use __glibc_unlikely.
15250 * libio/libioP.h (EOF): Don't define.
15251 * libio/iofdopen.c, libio/iofopen.c, libio/iopopen.c
15252 * libio/iovdprintf.c, libio/oldiofdopen.c, libio/oldiofopen.c
15253 * libio/oldiopopen.c, debug/vdprintf_chk.c: Remove #if block
15254 testing _IO_UNIFIED_JUMPTABLES.
15255
15256 * libio/libio.h (_IO_FILE): Delete; all uses changed to FILE.
15257 (_IO_fpos_t): Delete; all uses changed to __fpos_t.
15258 (_IO_fpos64_t): Delete; all uses changed to __fpos64_t.
15259 (_IO_size_t): Delete; all uses changed to size_t.
15260 (_IO_ssize_t): Delete; all uses changed to ssize_t or __ssize_t.
15261 (_IO_off_t): Delete; all uses changed to off_t.
15262 (_IO_off64_t): Delete; all uses changed to off64_t.
15263 (_IO_pid_t): Delete; all uses changed to pid_t.
15264 (_IO_uid_t): Delete; all uses changed to uid_t.
15265 (_IO_wint_t): Delete; all uses changed to wint_t.
15266 (_IO_va_list): Delete; all uses changed to va_list or __gnuc_va_list.
15267 (_IO_BUFSIZ): Delete; all uses changed to BUFSIZ.
15268 (_IO_cookie_io_functions_t): Delete; all uses changed to
15269 cookie_io_functions_t.
15270 (__io_read_fn): Delete; all uses changed to cookie_read_function_t.
15271 (__io_write_fn): Delete; all uses changed to cookie_write_function_t.
15272 (__io_seek_fn): Delete; all uses changed to cookie_seek_function_t.
15273 (__io_close_fn): Delete: all uses changed to cookie_close_function_t.
15274
15275 * libio/iofopncook.c: Remove unnecessary forward declarations.
15276 * libio/iolibio.h: Correct outdated commentary.
15277 * malloc/malloc.c (__malloc_stats): Remove unnecessary casts.
15278 * stdio-common/fxprintf.c (__fxprintf_nocancel):
15279 Remove unnecessary casts.
15280 * stdio-common/getline.c: Use _IO_getdelim directly.
15281 Don't redefine ssize_t.
15282 * stdio-common/printf_fp.c, stdio_common/printf_fphex.c
15283 * stdio-common/printf_size.c: Don't redefine size_t or FILE.
15284 Remove outdated comments.
15285 * stdio-common/vfscanf.c: Don't redefine va_list.
15286
15287 * libio/iolibio.h, libio/libioP.h: Remove extern "C".
15288 * libio/libio.h: Remove __BEGIN_DECLS and __END_DECLS.
15289 Remove preprocessor conditionals on _LIBC and __USE_GNU,
15290 which are always true, and __cplusplus, which is always false.
15291
15292 2018-02-21 Joseph Myers <joseph@codesourcery.com>
15293
15294 [BZ #15105]
15295 [BZ #19463]
15296 * libio/fputc_u.c (fputc_unlocked): Use libc_hidden_def.
15297 * libio/putc_u.c (putc_unlocked): Rename to __putc_unlocked and
15298 define as weak alias of __putc_unlocked. Use libc_hidden_weak.
15299 * include/stdio.h [!_ISOMAC] (fputc_unlocked): Use
15300 libc_hidden_proto.
15301 [!_ISOMAC] (putc_unlocked): Likewise.
15302 [!_ISOMAC] (__putc_unlocked): Declare as hidden function, and
15303 define inline if [__USE_EXTERN_INLINES].
15304 * misc/syslog.c (__vsyslog_chk): Call __putc_unlocked instead of
15305 putc_unlocked.
15306
15307 [BZ #15105]
15308 [BZ #19463]
15309 * libio/getc_u.c (getc_unlocked): Use libc_hidden_weak.
15310 * include/stdio.h [!_ISOMAC] (__getc_unlocked): Use
15311 attribute_hidden, and define inline if [__USE_EXTERN_INLINES].
15312 [!_ISOMAC] (getc_unlocked): Use libc_hidden_proto.
15313 * misc/getttyent.c (__getttyent): Call __getc_unlocked instead of
15314 getc_unlocked.
15315 * time/tzfile.c (__tzfile_read): Likewise.
15316
15317 2018-02-21 Mike FABIAN <mfabian@redhat.com>
15318
15319 [BZ #22517]
15320 * localedata/locales/et_EE (LC_COLLATE): add missing “reorder-end”
15321
15322 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
15323
15324 * io/fcntl.h: Fix a typo in a comment.
15325
15326 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
15327
15328 [BZ #22862]
15329 * include/features.h: Add _ISOC11_SOURCE to test for whether to
15330 define _DEFAULT_SOURCE.
15331 * manual/creature.texi (_DEFAULT_SOURCE): Improve documentation.
15332
15333 2018-02-21 Florian Weimer <fweimer@redhat.com>
15334
15335 [BZ #20890]
15336 * elf/cache.c (save_cache): Call fsync on temporary file before
15337 renaming it.
15338 (save_aux_cache): Call fdatasync on temporary file before renaming
15339 it.
15340
15341 2018-02-21 Florian Weimer <fweimer@redhat.com>
15342
15343 [BZ #22787]
15344 * include/caller.h: Remove file.
15345 * elf/dl-caller.c: Likewise.
15346 * elf/Makefile (dl-routines): Remove dl-caller.
15347 (shared-only-routines): Do not add dl-caller.
15348 * elf/dl-load.c (_dl_map_object_from_fd): Do not call
15349 __check_caller.
15350 * elf/dl-open.c (struct dl_open_args): Remove caller_dl_open
15351 member.
15352 (dl_open_worker): Do not call __check_caller.
15353 (_dl_open): Do not set caller_dl_open member.
15354 * elf/rtld.c (_rtld_global_ro): Do not initialize
15355 _dl_check_caller member.
15356 * sysdeps/generic/ldsodefs.h (rtld_global): Remove
15357 _dl_check_caller member.
15358 (_dl_check_caller): Remove declaration.
15359 * sysdeps/unix/sysv/linux/dl-execstack.c
15360 (_dl_make_stack_executable): Do not call __check_caller.
15361
15362 2018-02-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
15363
15364 * sysdeps/mach/hurd/dl-sysdep.c (_dl_random): New variable.
15365 * sysdeps/mach/hurd/sysdep-cancel.h: New file.
15366
15367 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
15368
15369 * manual/creature.texi (_ISOC99_SOURCE): Update the dated
15370 description.
15371
15372 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
15373
15374 [BZ #16335]
15375 * manual/creature.texi (_POSIX_C_SOURCE): Document special values
15376 of 199606L, 200112L, and 200809L.
15377 (_XOPEN_SOURCE): Document special values of 600 and 700.
15378 (_ISOC11_SOURCE): Document macro.
15379 (_ATFILE_SOURCE): Likewise.
15380 (_FORTIFY_SOURCE): Likewise.
15381
15382 2018-02-19 Joseph Myers <joseph@codesourcery.com>
15383
15384 [BZ #15105]
15385 [BZ #19463]
15386 * libio/ferror_u.c (ferror_unlocked): Rename to __ferror_unlocked
15387 and define as weak alias of __ferror_unlocked. Use
15388 libc_hidden_weak.
15389 * include/stdio.h [!_ISOMAC] (ferror_unlocked): Use
15390 libc_hidden_proto.
15391 [!_ISOMAC] (__ferror_unlocked) New declaration, and inline
15392 function if [__USE_EXTERN_INLINES].
15393 * time/getdate.c (__getdate_r): Call __ferror_unlocked instead of
15394 ferror_unlocked.
15395
15396 2018-02-19 Rical Jasan <ricaljasan@pacific.net>
15397
15398 [BZ #6889]
15399 * manual/filesys.texi (get_current_dir_name): Clarify behaviour.
15400
15401 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
15402
15403 [BZ #22818]
15404 * posix/tst-glob_lstat_compat.c [__alpha__] (glob): Access
15405 the GLIBC_2.1 version.
15406
15407 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
15408
15409 [BZ #21508]
15410 * catgets/xopen-msg.awk: Ignore POT-Creation-Date line.
15411 * intl/Makefile ($(objpfx)tst-gettext-de.po): Generate
15412 intl/tst-gettext-de.po from po/de.po by removing the
15413 POT-Creation-Date line.
15414 ($(objpfx)msgs.h): Depend on $(objpfx)tst-gettext-de.po instead of
15415 ../po/de.po.
15416 * intl/tst-gettext.sh: Use ${objpfx}tst-gettext-de.po instead of
15417 ../po/de.po.
15418
15419 2018-02-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
15420
15421 * mach/Makefile (headers): Add mach/param.h.
15422 * sysdeps/mach/hurd/bits/param.h: Include <mach/param.h>.
15423 * sysdeps/mach/i386/mach/param.h: New file, defines EXEC_PAGESIZE
15424 * sysdeps/mach/hurd/ptsname.c: Include <sys/stat.h>.
15425 (__ptsname_r): Move implementation to...
15426 (__ptsname_internal): ... new function. Add filling the STP
15427 structure.
15428
15429 2018-02-17 John David Anglin <danglin@gcc.gnu.org>
15430
15431 * sysdeps/hppa/fpu/libm-test-ulps (pow): Increase double and
15432 idouble to 1 ULP.
15433
15434 2018-02-16 Rical Jasan <ricaljasan@pacific.net>
15435
15436 * manual/platform.texi (__riscv_flush_icache): Fix @deftypefun
15437 syntax.
15438
15439 2018-02-16 Stefan Liebler <stli@linux.vnet.ibm.com>
15440
15441 * nptl/Makefile (tst-mutex8-ENV): Delete.
15442 * nptl/tst-mutex8.c (check_type):
15443 Add runtime check if mutex will be elided.
15444
15445 2018-02-15 Joseph Myers <joseph@codesourcery.com>
15446
15447 [BZ #20980]
15448 [BZ #21234]
15449 * manual/install.texi (Configuring and compiling): Describe
15450 passing CC and CFLAGS on configure command line, not as
15451 environment variables. Use @code markup on those variables.
15452 Specify what options go in CC and what go in CFLAGS. Note the
15453 requirement to compile with optimization.
15454 * INSTALL: Regenerated.
15455
15456 [BZ #18124]
15457 * sysdeps/hppa/bsd-setjmp.S: Include <sysdep.h>.
15458 (setjmp): Use HIDDEN_JUMPTARGET with __sigsetjmp.
15459 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Call
15460 __sigprocmask instead of sigprocmask.
15461 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext):
15462 Likewise.
15463 * sysdeps/unix/sysv/linux/hppa/localplt.data: Remove entries for
15464 __sigsetjmp and sigprocmask.
15465
15466 [BZ #15105]
15467 * include/argz.h (argz_next): Use libc_hidden_proto.
15468 (__argz_next): Likewise.
15469 * string-argz-next.c (__argz_next): Use libc_hidden_def.
15470 (argz_next): Use libc_hidden_weak.
15471
15472 [BZ #15105]
15473 * include/sys/socket.h [!_ISOMAC] (__cmsg_nxthdr): Use
15474 libc_hidden_proto.
15475 * sysdeps/unix/sysv/linux/cmsg_nxthdr.c (__cmsg_nxthdr): Use
15476 libc_hidden_def.
15477
15478 [BZ #15105]
15479 * include/stdio.h [!_ISOMAC && IS_IN (libc)] (fputs): Use
15480 libc_hidden_proto.
15481 * libio/iofputs.c (fputs): Use libc_hidden_weak.
15482
15483 [BZ #15105]
15484 [BZ #19463]
15485 * libio/feof_u.c (feof_unlocked): Rename to __feof_unlocked and
15486 define as weak alias of __feof_unlocked. Use libc_hidden_weak.
15487 * include/stdio.h (feof_unlocked): Use libc_hidden_proto.
15488 (__feof_unlocked): New declaration, and inline function if
15489 [__USE_EXTERN_INLINES].
15490 * iconv/gconv_conf.c (read_conf_file): Call __feof_unlocked
15491 instead of feof_unlocked.
15492 * intl/localealias.c [_LIBC] (FEOF): Likewise.
15493 * nss/nsswitch.c (nss_parse_file): Likewise.
15494 * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area):
15495 Likewise.
15496 * time/getdate.c (__getdate_r): Likewise.
15497 * sysdeps/posix/getaddrinfo.c [IS_IN (libc)] (feof_unlocked):
15498 Define as macro to call __feof_unlocked.
15499
15500 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
15501
15502 * sysdeps/aarch64/fpu/fpu_control.h: Use <> in include.
15503
15504 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
15505
15506 * math/Makefile: Remove mpexp.c and mplog.c
15507 * sysdeps/i386/fpu/mpexp.c: Delete file.
15508 * sysdeps/i386/fpu/mplog.c: Likewise.
15509 * sysdeps/ia64/fpu/mpexp.c: Likewise.
15510 * sysdeps/ia64/fpu/mplog.c: Likewise.
15511 * sysdeps/ieee754/dbl-64/e_exp.c: Remove mention of mpexp and mplog.
15512 * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): Remove unused function.
15513 * sysdeps/ieee754/dbl-64/mpexp.c: Delete file.
15514 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
15515 * sysdeps/m68k/m680x0/fpu/mpexp.c: Likewise.
15516 * sysdeps/m68k/m680x0/fpu/mplog.c: Likewise.
15517 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove mpexp* and mplog*.
15518 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: Remove unused defines.
15519 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
15520 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
15521 * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: Delete file.
15522 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
15523 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
15524 * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: Likewise.
15525 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
15526 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
15527
15528 2018-02-15 Stefan Liebler <stli@linux.vnet.ibm.com>
15529
15530 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
15531
15532 2018-02-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
15533
15534 * sysdeps/sh/libm-test-ulps: Update.
15535
15536 2018-02-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
15537
15538 * sysdeps/powerpc/fpu/libm-test-ulps (pow): Increase double and
15539 idouble to 1 ULP.
15540
15541 2018-02-12 Zack Weinberg <zackw@panix.com>
15542
15543 [BZ #19239]
15544 * posix/sys/types.h: Don't include sys/sysmacros.h.
15545 * misc/sys/sysmacros.h: Remove the conditional deprecation
15546 warnings for the macros defined by this header.
15547
15548 2018-02-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
15549
15550 * manual/probes.texi: Remove slowexp probes.
15551 * math/Makefile: Remove slowexp.
15552 * sysdeps/generic/math_private.h (__slowexp): Remove.
15553 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Remove __slowexp and
15554 document error bounds.
15555 * sysdeps/i386/fpu/slowexp.c: Remove.
15556 * sysdeps/ia64/fpu/slowexp.c: Remove.
15557 * sysdeps/ieee754/dbl-64/slowexp.c: Remove.
15558 * sysdeps/ieee754/dbl-64/uexp.h (err_0): Remove.
15559 * sysdeps/m68k/m680x0/fpu/slowexp.c: Remove.
15560 * sysdeps/powerpc/power4/fpu/Makefile (CPPFLAGS-slowexp.c): Remove.
15561 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowexp-fma.
15562 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Remove.
15563 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Remove.
15564 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Remove.
15565 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Remove.
15566 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Remove.
15567 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Remove.
15568
15569 2018-02-12 Wilco Dijkstra <wdijkstr@arm.com>
15570
15571 [BZ #13932]
15572 * sysdeps/ieee754/dbl-64/uexp.h (err_1): Remove.
15573 * benchtests/pow-inputs: Update comment for slow path cases.
15574 * manual/probes.texi (slowpow_p10): Delete removed probe.
15575 (slowpow_p10): Likewise.
15576 * math/Makefile: Remove halfulp.c and slowpow.c.
15577 * sysdeps/aarch64/libm-test-ulps: Set ULP of pow to 1.
15578 * sysdeps/generic/math_private.h (__exp1): Remove error argument.
15579 (__halfulp): Remove.
15580 (__slowpow): Remove.
15581 * sysdeps/i386/fpu/halfulp.c: Delete file.
15582 * sysdeps/i386/fpu/slowpow.c: Likewise.
15583 * sysdeps/ia64/fpu/halfulp.c: Likewise.
15584 * sysdeps/ia64/fpu/slowpow.c: Likewise.
15585 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove error argument,
15586 improve comments and add error analysis.
15587 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Add error analysis.
15588 (power1): Remove function:
15589 (log1): Remove error argument, add error analysis.
15590 (my_log2): Remove function.
15591 * sysdeps/ieee754/dbl-64/halfulp.c: Delete file.
15592 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
15593 * sysdeps/m68k/m680x0/fpu/halfulp.c: Likewise.
15594 * sysdeps/m68k/m680x0/fpu/slowpow.c: Likewise.
15595 * sysdeps/powerpc/power4/fpu/Makefile: Remove CPPFLAGS-slowpow.c.
15596 * sysdeps/x86_64/fpu/libm-test-ulps: Set ULP of pow to 1.
15597 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowpow-fma.c,
15598 slowpow-fma4.c, halfulp-fma.c, halfulp-fma4.c.
15599 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__slowpow): Remove define.
15600 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__slowpow): Likewise.
15601 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Delete file.
15602 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
15603 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
15604 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
15605
15606 2018-02-11 Samuel Thibault <samuel.thibault@ens-lyon.org>
15607
15608 * nscd/connections.c (RWLOCK_INITIALIZER): Define to
15609 PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP or
15610
15611 2018-02-10 Dmitry V. Levin <ldv@altlinux.org>
15612
15613 [BZ #22433]
15614 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (__ptrace_request):
15615 Remove arm-specific PTRACE_GET_THREAD_AREA, PTRACE_GETHBPREGS,
15616 and PTRACE_SETHBPREGS.
15617
15618 2018-02-10 Zack Weinberg <zackw@panix.com>
15619
15620 [BZ #22830]
15621 * malloc/malloc.c (__malloc_stats): Restore stderr->_flags2
15622 correctly.
15623 * malloc/tst-malloc-stats-cancellation.c: New test case.
15624 * malloc/Makefile: Add new test case.
15625
15626 2018-02-10 Wilco Dijkstra <wdijkstr@arm.com>
15627
15628 * sysdeps/aarch64/fpu/fpu_control.h: Add features.h to fix build error.
15629
15630 2018-02-10 Joseph Myers <joseph@codesourcery.com>
15631
15632 * math/Makefile (libm-narrow-fns): Add add.
15633 (libm-test-funcs-narrow): Likewise.
15634 * math/Versions (GLIBC_2.28): Add narrowing add functions.
15635 * math/bits/mathcalls-narrow.h (add): Use __MATHCALL_NARROW .
15636 * math/gen-auto-libm-tests.c (test_functions): Add add.
15637 * math/math-narrow.h (CHECK_NARROW_ADD): New macro.
15638 (NARROW_ADD_ROUND_TO_ODD): Likewise.
15639 (NARROW_ADD_TRIVIAL): Likewise.
15640 * sysdeps/ieee754/float128/float128_private.h (__faddl): New
15641 macro.
15642 (__daddl): Likewise.
15643 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fadd and
15644 dadd.
15645 (CFLAGS-nldbl-dadd.c): New variable.
15646 (CFLAGS-nldbl-fadd.c): Likewise.
15647 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
15648 __nldbl_daddl.
15649 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_daddl): New
15650 prototype.
15651 * manual/arith.texi (Misc FP Arithmetic): Document fadd, faddl,
15652 daddl, fMaddfN, fMaddfNx, fMxaddfN and fMxaddfNx.
15653 * math/auto-libm-test-in: Add tests of add.
15654 * math/auto-libm-test-out-narrow-add: New generated file.
15655 * math/libm-test-narrow-add.inc: New file.
15656 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
15657 * sysdeps/ieee754/dbl-64/s_f32xaddf64.c: Likewise.
15658 * sysdeps/ieee754/dbl-64/s_fadd.c: Likewise.
15659 * sysdeps/ieee754/float128/s_f32addf128.c: Likewise.
15660 * sysdeps/ieee754/float128/s_f64addf128.c: Likewise.
15661 * sysdeps/ieee754/float128/s_f64xaddf128.c: Likewise.
15662 * sysdeps/ieee754/ldbl-128/s_daddl.c: Likewise.
15663 * sysdeps/ieee754/ldbl-128/s_f64xaddf128.c: Likewise.
15664 * sysdeps/ieee754/ldbl-128/s_faddl.c: Likewise.
15665 * sysdeps/ieee754/ldbl-128ibm/s_daddl.c: Likewise.
15666 * sysdeps/ieee754/ldbl-128ibm/s_faddl.c: Likewise.
15667 * sysdeps/ieee754/ldbl-96/s_daddl.c: Likewise.
15668 * sysdeps/ieee754/ldbl-96/s_faddl.c: Likewise.
15669 * sysdeps/ieee754/ldbl-opt/nldbl-dadd.c: Likewise.
15670 * sysdeps/ieee754/ldbl-opt/nldbl-fadd.c: Likewise.
15671 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
15672 * sysdeps/ieee754/soft-fp/s_fadd.c: Likewise.
15673 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
15674 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15675 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
15676 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
15677 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
15678 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
15679 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
15680 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
15681 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
15682 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
15683 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
15684 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
15685 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
15686 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
15687 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
15688 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
15689 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
15690 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
15691 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
15692 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
15693 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
15694 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
15695 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
15696 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
15697 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
15698 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
15699 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
15700 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
15701 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
15702
15703 * sysdeps/powerpc/powerpc64le/Makefile [$(subdir) = math]
15704 (f128-pairs): New variable.
15705 [$(subdir) = math] ($(foreach suf,$(all-object-suffixes),$(foreach
15706 pair,$(f128-pairs),$(objpfx)test-$(pair)%$(suf)))): Add -mfloat128
15707 to CFLAGS.
15708 [$(subdir) = math] ($(foreach pair,$(f128-pairs),test-$(pair)%)):
15709 Also make tests add $(f128-loader-link) to gnulib-tests.
15710
15711 2018-02-09 DJ Delorie <dj@redhat.com>
15712
15713 [BZ #22827]
15714 * sysdeps/unix/sysv/linux/riscv/readelflib.c (process_elf_file): Use
15715 64-bit ELF type for 64-bit ELF objects.
15716
15717 2018-02-09 Joseph Myers <joseph@codesourcery.com>
15718
15719 * math/libm-test-driver.c (snan_tests_arg): New variable.
15720 * math/libm-test-support.h (snan_tests_arg): New declaration.
15721 * math/libm-test-support.c (enable_test): Check snan_tests_arg.
15722
15723 * math/Makefile (test-type-pairs): New variable.
15724 (test-type-pairs-f64xf128-yes): Likewise.
15725 (tests): Add test-narrow-macros.
15726 (libm-test-funcs-narrow): New variable.
15727 (libm-test-c-narrow): Likewise.
15728 (generated): Add $(libm-test-c-narrow).
15729 (libm-tests-base-narrow): New variable.
15730 (libm-tests-narrow): Likewise.
15731 (libm-tests): Add $(libm-tests-narrow).
15732 (libm-tests-for-type): Handle $(libm-tests-narrow).
15733 (libm-test-c-narrow-obj): New variable.
15734 ($(libm-test-c-narrow-obj)): New rule.
15735 ($(foreach t,$(libm-tests-narrow),$(objpfx)$(t).c)): Likewise.
15736 ($(foreach f,$(libm-test-funcs-narrow),$(objpfx)$(o)-$(f).o)): Use
15737 $(o-iterator) to set dependencies and CFLAGS.
15738 * math/gen-auto-libm-tests.c: Document use for narrowing
15739 functions.
15740 (output_for_one_input_case): Take argument NARROW.
15741 (generate_output): Likewise. Update call to
15742 output_for_one_input_case.
15743 (main): Take --narrow option. Update call to generate_output.
15744 * math/gen-libm-test.pl (_apply_lit): Take macro name as argument.
15745 (apply_lit): Update call to _apply_lit.
15746 (apply_arglit): New function.
15747 (parse_args): Handle "a" arguments.
15748 (parse_auto_input): Handle format names using ":".
15749 * math/README.libm-test: Document "a" parameter type.
15750 * math/libm-test-support.h (ARG_TYPE_MIN): New macro.
15751 (ARG_TYPE_TRUE_MIN): Likewise.
15752 (ARG_TYPE_MAX): Likwise.
15753 (ARG_MIN_EXP): Likewise.
15754 (ARG_MAX_EXP): Likewise.
15755 (ARG_MANT_DIG): Likewise.
15756 (TEST_COND_arg_ibm128): Likewise.
15757 (TEST_COND_ibm128_libgcc): Define conditional on [ARG_FLOAT].
15758 (TEST_COND_arg_fmt): New macro.
15759 (init_max_error): Update prototype.
15760 * math/libm-test-support.c (test_ibm128): New variable.
15761 (init_max_error): Take argument testing_ibm128 and set test_ibm128
15762 instead of using [TEST_COND_ibm128] conditional.
15763 (test_exceptions): Use test_ibm128 instead of TEST_COND_ibm128.
15764 * math/libm-test-driver.c (STR_ARG_FLOAT): New macro.
15765 [TEST_NARROW] (TEST_MSG): New definition.
15766 (arg_plus_zero): New macro.
15767 (arg_minus_zero): Likewise.
15768 (arg_plus_infty): Likewise.
15769 (arg_minus_infty): Likewise.
15770 (arg_qnan_value_pl): Likewise.
15771 (arg_qnan_value): Likewise.
15772 (arg_snan_value_pl): Likewise.
15773 (arg_snan_value): Likewise.
15774 (arg_max_value): Likewise.
15775 (arg_min_value): Likewise.
15776 (arg_min_subnorm_value): Likewise.
15777 [ARG_FLOAT] (struct test_aa_f_data): New struct type.
15778 (RUN_TEST_LOOP_aa_f): New macro.
15779 (TEST_SUFF): New macro.
15780 (TEST_SUFF_STR): Likewise.
15781 [!TEST_MATHVEC] (VEC_SUFF): Don't define.
15782 (TEST_COND_any_ibm128): New macro.
15783 (START): Use TEST_SUFF and TEST_SUFF_STR in initializer for
15784 this_func. Update call to init_max_error.
15785 * math/test-double.h (FUNC_NARROW_PREFIX): New macro.
15786 * math/test-float.h (FUNC_NARROW_PREFIX): Likewise.
15787 * math/test-float128.h (FUNC_NARROW_PREFIX): Likewise.
15788 * math/test-float32.h (FUNC_NARROW_PREFIX): Likewise.
15789 * math/test-float32x.h (FUNC_NARROW_PREFIX): Likewise.
15790 * math/test-float64.h (FUNC_NARROW_PREFIX): Likewise.
15791 * math/test-float64x.h (FUNC_NARROW_PREFIX): Likewise.
15792 * math/test-math-scalar.h (TEST_NARROW): Likewise.
15793 * math/test-math-vector.h (TEST_NARROW): Likewise.
15794 * math/test-arg-double.h: New file.
15795 * math/test-arg-float128.h: Likewise.
15796 * math/test-arg-float32x.h: Likewise.
15797 * math/test-arg-float64.h: Likewise.
15798 * math/test-arg-float64x.h: Likewise.
15799 * math/test-arg-ldouble.h: Likewise.
15800 * math/test-math-narrow.h: Likewise.
15801 * math/test-narrow-macros.c: Likewise.
15802 * sysdeps/ieee754/ldbl-opt/test-narrow-macros-ldbl-64.c: Likewise.
15803 * sysdeps/ieee754/ldbl-opt/Makefile (tests): Add
15804 test-narrow-macros-ldbl-64.
15805 (CFLAGS-test-narrow-macros-ldbl-64.c): New variable.
15806
15807 * math/bits/mathcalls-narrow.h: New file.
15808 * include/bits/mathcalls-narrow.h: Likewise.
15809 * math/math-narrow.h: Likewise.
15810 * math/math.h (__MATHCALL_NARROW_ARGS_1): New macro.
15811 (__MATHCALL_NARROW_ARGS_2): Likewise.
15812 (__MATHCALL_NARROW_ARGS_3): Likewise.
15813 (__MATHCALL_NARROW_NORMAL): Likewise.
15814 (__MATHCALL_NARROW_REDIR): Likewise.
15815 (__MATHCALL_NARROW): Likewise.
15816 [__GLIBC_USE (IEC_60559_BFP_EXT)]: Repeatedly include
15817 <bits/mathcalls-narrow.h> with _Mret_, _Marg_ and __MATHCALL_NAME
15818 defined.
15819 [__GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
15820 * math/Makefile (headers): Add bits/mathcalls-narrow.h.
15821 (libm-narrow-fns): New variable.
15822 (libm-narrow-types-basic): Likewise.
15823 (libm-narrow-types-ldouble-yes): Likewise.
15824 (libm-narrow-types-float128-yes): Likewise.
15825 (libm-narrow-types-float128-alias-yes): Likewise.
15826 (libm-narrow-types): Likewise.
15827 (libm-routines): Add narrowing functions.
15828 * sysdeps/i386/fpu/fenv_private.h [__x86_64__]
15829 (libc_feholdexcept_setroundf128): New macro.
15830 [__x86_64__] (libc_feupdateenv_testf128): Likewise.
15831 * sysdeps/ieee754/float128/float128_private.h: Include
15832 <math/math-narrow.h>.
15833 [libc_feholdexcept_setroundf128] (libc_feholdexcept_setroundl):
15834 Undefine and redefine.
15835 [libc_feupdateenv_testf128] (libc_feupdateenv_testl): Likewise.
15836 (libm_alias_float_ldouble): Undefine and redefine.
15837 (libm_alias_double_ldouble): Likewise.
15838
15839 * math/Makefile [$(PERL) != no] (libm-test-incs): Remove variable.
15840
15841 2018-02-09 Wilco Dijkstra <wdijkstr@arm.com>
15842
15843 * sysdeps/aarch64/fpu/fpu_control.h: Use builtins for accessing
15844 FPCR/FPSR.
15845
15846 2018-02-09 Rical Jasan <ricaljasan@pacific.net>
15847
15848 * manual/creature.texi: Convert references to gcc.info to gcc.
15849 * manual/stdio.texi: Likewise.
15850 * manual/string.texi: Likewise.
15851
15852 2018-02-07 Joseph Myers <joseph@codesourcery.com>
15853
15854 [BZ #17979]
15855 * posix/bits/types.h (__int_least8_t): New typedef.
15856 (__uint_least8_t): Likewise.
15857 (__int_least16_t): Likewise.
15858 (__uint_least16_t): Likewise.
15859 (__int_least32_t): Likewise.
15860 (__uint_least32_t): Likewise.
15861 (__int_least64_t): Likewise.
15862 (__uint_least64_t): Likewise.
15863 * sysdeps/generic/stdint.h (int_least8_t): Define using
15864 __int_least8_t.
15865 (int_least16_t): Define using __int_least16_t.
15866 (int_least32_t): Define using __int_least32_t.
15867 (int_least64_t): Define using __int_least64_t.
15868 (uint_least8_t): Define using __uint_least8_t.
15869 (uint_least16_t): Define using __uint_least16_t.
15870 (uint_least32_t): Define using __uint_least32_t.
15871 (uint_least64_t): Define using __uint_least64_t.
15872 * wcsmbs/uchar.h: Include <bits/types.h>.
15873 (char16_t): Define using __uint_least16_t conditional only on
15874 [!__USE_ISOCXX11].
15875 (char32_t): Define using __uint_least32_t conditional only on
15876 [!__USE_ISOCXX11].
15877 * wcsmbs/test-char-types.c: New file.
15878 * wcsmbs/Makefile (tests): Add test-char-types.
15879
15880 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
15881 version to 4.0.1.
15882
15883 2018-02-07 Zack Weinberg <zackw@panix.com>
15884
15885 * bits/_G_config.h: Move back to sysdeps/generic/_G_config.h.
15886 Delete all contents except for definitions of _G_HAVE_MMAP and
15887 _G_HAVE_MREMAP. Add commentary explaining those two symbols.
15888 * sysdeps/unix/sysv/linux/bits/_G_config.h: Move back to
15889 sysdeps/unix/sysv/linux/_G_config.h. Make same content
15890 change as above.
15891
15892 * libio/libio.h: Don't include bits/_G_config.h here.
15893 Include stddef.h with __need_wchar_t defined. Include
15894 bits/types/__mbstate_t.h, bits/types/wint_t.h, and gconv.h.
15895 Define _IO_iconv_t here, directly.
15896 Don't define _IO_HAVE_ST_BLKSIZE.
15897 * libio/libioP.h: Include _G_config.h here. Move include of
15898 shlib-compat.h up with rest of includes. Simplify conditionals
15899 controlling definition of _IO_JUMPS_OFFSET.
15900
15901 * csu/init.c: Remove always-true #if around entire file.
15902 Don't include stdio.h. Set _IO_stdin_used to hardwired
15903 constant 0x20001, and update commentary.
15904 * include/stdio.h, sysdeps/ieee754/ldbl-opt/nldbl-compat.h:
15905 Replace all uses of _G_va_list with __gnuc_va_list.
15906 * libio/filedoalloc.c: Use #if defined _STATBUF_ST_BLKSIZE
15907 instead of #if _IO_HAVE_ST_BLKSIZE.
15908 * libio/fileops.c: Test _G_HAVE_MREMAP with #if, not #ifdef.
15909 * libio/iofdopen.c, libio/iofopen.c: Test _G_HAVE_MMAP with #if,
15910 not #ifdef.
15911
15912 * libio/bits/libio.h: Move back to libio/libio.h and adjust
15913 multiple-include guard to match.
15914 Merge contents of libio/bits/libio-ldbl.h and include/libio.h
15915 into this file.
15916 Remove preprocessor conditionals that are always true and/or
15917 redundant to other preprocessor conditionals in the same nest.
15918 Include shlib-compat.h unconditionally.
15919 Error out if _LIBC is not defined, or if _ISOMAC is defined,
15920 or if _IO_MTSAFE_IO is defined but _IO_lock_t_defined is not
15921 defined after including stdio.h.
15922 Use __BEGIN_DECLS/__END_DECLS.
15923
15924 * libio/bits/libio-ldbl.h, include/bits/libio.h: Delete file.
15925 * include/stdio.h, libio/iolibio.h, libio/libioP.h: Include
15926 libio.h as <libio/libio.h> rather than as <bits/libio.h>.
15927
15928 2018-02-07 Zack Weinberg <zackw@panix.com>
15929
15930 * libio/bits/types/__fpos_t.h, libio/bits/types/__fpos64_t.h:
15931 New single-type headers split from _G_config.h.
15932 * libio/bits/types/cookie_io_functions_t.h
15933 * libio/bits/types/struct_FILE.h
15934 New single-type headers split from libio.h.
15935
15936 * libio/Makefile: Install the above new headers. Don't install
15937 libio.h, _G_config.h, bits/libio.h, bits/_G_config.h, or
15938 bits/libio-ldbl.h.
15939 * libio/_G_config.h, libio/libio.h: Delete file.
15940
15941 * libio/bits/libio.h: Remove improper-inclusion guard.
15942 Include stdio.h and don't repeat anything that it does.
15943 Define _IO_fpos_t as __fpos_t, _IO_fpos64_t as __fpos64_t,
15944 _IO_BUFSIZ as BUFSIZ, _IO_va_list as __gnuc_va_list,
15945 __io_read_fn as cookie_read_function_t,
15946 __io_write_fn as cookie_write_function_t,
15947 __io_seek_fn as cookie_seek_function_t,
15948 __io_close_fn as cookie_close_function_t,
15949 and _IO_cookie_io_functions_t as cookie_io_functions_t.
15950 Define _STDIO_USES_IOSTREAM, __HAVE_COLUMN, and _IO_file_flags
15951 here, in the "compatibility defines" section. Remove an #if 0
15952 block. Use the "body" macros from bits/types/struct_FILE.h to
15953 define _IO_getc_unlocked, _IO_putc_unlocked, _IO_feof_unlocked,
15954 and _IO_ferror_unlocked.
15955 Move prototypes of __uflow and __overflow...
15956
15957 * libio/stdio.h: ...here. Don't include bits/libio.h.
15958 Don't define _STDIO_USES_IOSTREAM. Get __gnuc_va_list
15959 directly from stdarg.h. Include bits/types/__fpos_t.h,
15960 bits/types/__fpos64_t.h, bits/types/struct_FILE.h,
15961 and, when __USE_GNU, bits/types/cookie_io_functions_t.h.
15962 Use __gnuc_va_list, not _G_va_list; __fpos_t, not _G_fpos_t;
15963 __fpos64_t, not _G_fpos64_t; FILE, not struct _IO_FILE;
15964 cookie_io_functions_t, not _IO_cookie_io_functions_t;
15965 __ssize_t, not _IO_ssize_t. Unconditionally define
15966 BUFSIZ as 8192 and EOF as (-1).
15967
15968 * libio/bits/stdio.h: Add multiple-include guard. Use the "body"
15969 macros from bits/types/struct_FILE.h instead of _IO_* macros
15970 from libio.h; use __gnuc_va_list instead of va_list and __ssize_t
15971 instead of _IO_ssize_t.
15972 * libio/bits/stdio2.h: Similarly.
15973
15974 * libio/iolibio.h: Add multiple-include guard.
15975 Include bits/libio.h after stdio.h.
15976 * libio/libioP.h: Add multiple-include guard.
15977 Include stdio.h and bits/libio.h before iolibio.h.
15978
15979 * include/bits/types/__fpos_t.h, include/bits/types/__fpos64_t.h
15980 * include/bits/types/cookie_io_functions_t.h
15981 * include/bits/types/struct_FILE.h: New wrappers.
15982
15983 * bits/_G_config.h, sysdeps/unix/sysv/linux/_G_config.h:
15984 Get definitions of _G_fpos_t and _G_fpos64_t from
15985 bits/types/__fpos_t.h and bits/types/__fpos64_t.h
15986 respectively. Remove improper-inclusion guards.
15987
15988 * conform/data/stdio.h-data: Update expectations of va_list.
15989 * scripts/check-installed-headers.sh: Remove special case for
15990 libio.h and _G_config.h.
15991
15992 2018-02-07 Joseph Myers <joseph@codesourcery.com>
15993
15994 [BZ #15105]
15995 [BZ #19463]
15996 * include/sys/sysmacros.h [!_ISOMAC]
15997 (__SYSMACROS_NEED_IMPLEMENTATION): Define macro.
15998 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC]
15999 (_SYS_SYSMACROS_H_WRAPPER): Likewise.
16000 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_major): Use
16001 libc_hidden_proto.
16002 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_minor): Likewise.
16003 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_makedev):
16004 Likewise.
16005 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_DECL_TEMPL):
16006 Undefine and redefine to add use __gnu_dev_ prefix.
16007 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_IMPL_TEMPL):
16008 Likewise.
16009 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_major): Declare
16010 and define as hidden inline function.
16011 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_minor):
16012 Likewise.
16013 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_makedev):
16014 Likewise.
16015 * misc/makedev.c (OUT_OF_LINE_IMPL_TEMPL): Use __gnu_dev_ prefix.
16016 (gnu_dev_major): Use weak_alias and libc_hidden_weak.
16017 (gnu_dev_minor): Likewise.
16018 (gnu_dev_makedev): Likewise.
16019 * csu/check_fds.c (check_one_fd): Use __gnu_dev_makedev instead of
16020 makedev.
16021 * posix/wordexp.c (exec_comm_child): Likewise.
16022 * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Use __gnu_dev_minor
16023 instead of minor and __gnu_dev_major instead of major.
16024 * sysdeps/unix/sysv/linux/device-nrs.h (DEV_TTY_P): Use
16025 __gnu_dev_major instead of major.
16026 * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): Use
16027 __gnu_dev_major instead of gnu_dev_major and __gnu_dev_minor
16028 instead of gnu_dev_minor.
16029 * sysdeps/unix/sysv/linux/ptsname.c (MASTER_P): Likewise.
16030 (SLAVE_P): Likewise.
16031 (__ptsname_internal): Use __gnu_dev_minor instead of minor.
16032 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Use __gnu_dev_major
16033 instead of major.
16034
16035 [BZ #21313]
16036 * locale/weight.h (findidx): Disable -Wmaybe-uninitialized for -Os
16037 in another place.
16038 * locale/weightwc.h (findidx): Likewise.
16039
16040 2018-02-07 Wilco Dijkstra <wdijkstr@arm.com>
16041
16042 * manual/probes.texi (slowlog): Delete documentation of removed probe.
16043 (slowlog_inexact): Likewise
16044 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Remove slow paths.
16045 * sysdeps/ieee754/dbl-64/ulog.h: Remove unused declarations.
16046
16047 2018-02-07 Igor Gnatenko <ignatenko@redhat.com>
16048
16049 [BZ #22797]
16050 * sysdeps/unix/sysv/linux/bits/mman-shared.h (pkey_get): Add
16051 missing second underscore to parameter name.
16052
16053 2018-02-06 Joseph Myers <joseph@codesourcery.com>
16054
16055 [BZ #14508]
16056 [BZ #15512]
16057 [BZ #17082]
16058 [BZ #20530]
16059 * bits/byteswap.h: Update file comment. Do not include
16060 <bits/byteswap-16.h>.
16061 (__bswap_constant_16): Cast result to __uint16_t. Use signed 0xff
16062 constant.
16063 (__bswap_16): Define as inline function.
16064 (__bswap_constant_32): Reformat definition.
16065 (__bswap_32): Always define as inline function, not macro, using
16066 __uint32_t. Use __builtin_bswap32 if [__GNUC_PREREQ (4, 3)],
16067 otherwise __bswap_constant_32.
16068 (__bswap_constant_64): Reformat definition. Do not use
16069 __extension__ here.
16070 (__bswap_64): Always define as inline function, not macro. Use
16071 __extension__ on function definition. Use __builtin_bswap64 if
16072 [__GNUC_PREREQ (4, 3)], otherwise __bswap_constant_64.
16073 * string/test-endian-file-scope.c: New file.
16074 * string/test-endian-sign-conversion.c: Likewise.
16075 * string/Makefile (headers): Remove bits/byteswap-16.h.
16076 (tests): Add test-endian-file-scope and
16077 test-endian-sign-conversion.
16078 (CFLAGS-test-endian-sign-conversion.c): New variable.
16079 * bits/byteswap-16.h: Remove file.
16080 * sysdeps/ia64/bits/byteswap-16.h: Likewise.
16081 * sysdeps/ia64/bits/byteswap.h: Likewise.
16082 * sysdeps/m68k/bits/byteswap.h: Likewise.
16083 * sysdeps/s390/bits/byteswap-16.h: Likewise.
16084 * sysdeps/s390/bits/byteswap.h: Likewise.
16085 * sysdeps/tile/bits/byteswap.h: Likewise.
16086 * sysdeps/x86/bits/byteswap-16.h: Likewise.
16087 * sysdeps/x86/bits/byteswap.h: Likewise.
16088
16089 [BZ #17721]
16090 * misc/sys/cdefs.h [!__GNUC__ && (__cplusplus || (__STDC_VERSION__
16091 && __STDC_VERSION__ >= 199901L))] (__inline): Define to inline.
16092 [!__GNUC_PREREQ (2,92) && __STDC_VERSION__ && __STDC_VERSION__ >=
16093 199901L] (__restrict): Define to restrict.
16094
16095 [BZ #19667]
16096 * string/testcopy.c: Include <support/support.h>. Do not include
16097 <malloc.h>. Use <support/test-driver.c>.
16098 (main): Rename to do_test. Make static. Use xmalloc instead of
16099 malloc.
16100
16101 [BZ #13575]
16102 * posix/bits/posix1_lim.h: Include <bits/wordsize.h>.
16103 [!SSIZE_MAX && !(__WORDSIZE == 64 || __WORDSIZE32_SIZE_ULONG)]
16104 (SSIZE_MAX): Define to INT_MAX.
16105 * posix/test-ssize-max.c: New file.
16106 * posix/Makefile (tests): Add test-ssize-max.
16107
16108 [BZ #19668]
16109 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: Include
16110 <support/support.h>. Do not include <malloc.h>.
16111 (query_auxv): Use xmalloc instead of malloc.
16112
16113 [BZ #14553]
16114 * posix/sys/types.h (loff_t): Only define for [__USE_MISC].
16115 * sysdeps/unix/sysv/linux/sys/quota.h (dqoff): Use __loff_t
16116 instead of loff_t.
16117
16118 2018-02-06 Florian Weimer <fweimer@redhat.com>
16119
16120 [BZ #18023]
16121 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
16122 Use scratch_buffer instead of extend_alloca.
16123
16124 2018-02-06 Zack Weinberg <zackw@panix.com>
16125
16126 * libio/stdio.h: Don't define getc or putc as macros.
16127 * libio/bits/stdio.h (getchar, putchar): Use getc and putc,
16128 not _IO_getc and _IO_putc.
16129
16130 * stdio-common/tstgetln.c: Don't redefine FILE, va_list, or BUFSIZ.
16131 * stdio-common/tstgetln.c: Don't redefine ssize_t.
16132
16133 2018-02-06 Joseph Myers <joseph@codesourcery.com>
16134
16135 * sysdeps/gnu/netinet/tcp.h (TCP_FASTOPEN_KEY): New macro.
16136 (TCP_FASTOPEN_NO_COOKIE): Likewise.
16137
16138 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_FREEBIND): New macro.
16139
16140 [BZ #14890]
16141 * elf/elf.h (NT_PRFPREG): New macro.
16142 (NT_S390_VXRS_LOW): Likewise.
16143 (NT_S390_VXRS_HIGH): Likewise.
16144 (NT_S390_GS_CB): Likewise.
16145 (NT_S390_GS_BC): Likewise.
16146 (NT_S390_RI_CB): Likewise.
16147
16148 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
16149 (MAP_SYNC): New macro.
16150 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC] (MAP_SYNC):
16151 Likewise.
16152 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
16153 (MAP_SYNC): Likewise.
16154 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
16155 (MAP_SYNC): Likewise.
16156 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
16157 (MAP_SYNC): Likewise.
16158 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
16159 (MAP_SYNC): Likewise.
16160 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
16161 (MAP_SYNC): Likewise.
16162 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
16163 (MAP_SYNC): Likewise.
16164 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC] (MAP_SYNC):
16165 Likewise.
16166 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC] (MAP_SYNC):
16167 Likewise.
16168
16169 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_MISC]
16170 (MAP_SHARED_VALIDATE): New macro.
16171 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
16172 (MAP_SHARED_VALIDATE): Likewise.
16173
16174 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16175
16176 * elf/dl-addr.c (determine_info): Use ADDRIDX with DT_GNU_HASH.
16177 * elf/dl-lookup.c (_dl_setup_hash): Likewise.
16178 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
16179
16180 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16181
16182 * elf/elf.h (DT_SYMTAB_SHNDX): New. Set to 34.
16183 (DT_NUM): Updated to 35.
16184
16185 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16186
16187 * sysdeps/i386/dl-machine.h (elf_machine_rel): Replace
16188 __builtin_expect with __glibc_likely and __glibc_unlikely.
16189 (elf_machine_rela): Likewise.
16190 (elf_machine_lazy_rel): Likewise.
16191
16192 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16193
16194 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Replace
16195 __builtin_expect with __glibc_likely and __glibc_unlikely.
16196 (elf_machine_lazy_rel): Likewise.
16197
16198 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16199
16200 [BZ #22638]
16201 * sysdeps/sparc/sparc32/start.S (_start): Check PIC instead of
16202 SHARED.
16203 * sysdeps/sparc/sparc64/start.S (_start): Likewise.
16204
16205 2018-02-05 Andreas Schwab <schwab@suse.de>
16206
16207 [BZ #22761]
16208 * assert/assert-perr.c (__assert_perror_fail): Append %n to format
16209 string.
16210
16211 2018-02-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
16212
16213 * stdlib/test-atexit-race-common.c [!defined PTHREAD_STACK_MIN]: Do
16214 not check against PTHREAD_STACK_MIN.
16215
16216 2018-02-02 Sean McKean <smckean83@gmail.com>
16217
16218 [BZ #22735]
16219 * time/time.h (clock): Reference CLOCKS_PER_SEC in comment.
16220
16221 2018-02-02 Florian Weimer <fweimer@redhat.com>
16222
16223 [BZ #22753]
16224 * sysdeps/posix/preadv2.c (preadv2): Handle offset == -1.
16225 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
16226 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
16227 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likweise.
16228 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
16229 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
16230 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
16231 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likweise.
16232 * manual/llio.texi (Scatter-Gather): Mention offset -1.
16233 * misc/tst-preadvwritev-common.c (do_test_without_offset): New.
16234 * misc/tst-preadvwritev2.c (do_test): Call it.
16235 * misc/tst-preadvwritev64v2.c (do_test): Likewise.
16236
16237 2018-02-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
16238
16239 * sysdeps/aarch64/memcmp.S: Use L() macro for labels.
16240
16241 * benchtests/bench-memcmp.c: Print json instead of plain text.
16242
16243 * benchtests/bench-memcmp.c (do_test): Call realloc_buf for
16244 every test run.
16245
16246 2018-02-01 Joseph Myers <joseph@codesourcery.com>
16247
16248 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
16249 version to 4.15.
16250 (s390_sthyi): New syscall.
16251
16252 * sysdeps/generic/ldbl-classify-compat.h: New file.
16253 * sysdeps/arm/ldbl-classify-compat.h: Likewise.
16254 * sysdeps/m68k/coldfire/ldbl-classify-compat.h: Likewise.
16255 * sysdeps/microblaze/ldbl-classify-compat.h: Likewise.
16256 * sysdeps/mips/ldbl-classify-compat.h: Likewise.
16257 * sysdeps/nios2/ldbl-classify-compat.h: Likewise.
16258 * sysdeps/sh/ldbl-classify-compat.h: Likewise.
16259 * sysdeps/ieee754/dbl-64/s_finite.c: Include
16260 <ldbl-classify-compat.h>.
16261 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16262 * sysdeps/ieee754/dbl-64/s_isinf.c: Include
16263 <ldbl-classify-compat.h>.
16264 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16265 * sysdeps/ieee754/dbl-64/s_isnan.c: Include
16266 <ldbl-classify-compat.h>.
16267 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16268 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Include
16269 <ldbl-classify-compat.h>.
16270 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16271 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Include
16272 <ldbl-classify-compat.h>.
16273 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16274 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Include
16275 <ldbl-classify-compat.h>.
16276 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16277 * sysdeps/arm/math_private.h (LDBL_CLASSIFY_COMPAT): Remove macro.
16278 * sysdeps/mips/math_private.h (LDBL_CLASSIFY_COMPAT): Likewise.
16279 * sysdeps/m68k/coldfire/math_private.h: Remove file.
16280 * sysdeps/microblaze/math_private.h: Likewise.
16281 * sysdeps/nios2/math_private.h: Likewise.
16282 * sysdeps/sh/math_private.h: Likewise.
16283
16284 * sysdeps/m68k/coldfire/fpu/math_private.h: Move to ....
16285 * sysdeps/m68k/coldfire/math_private.h: ... here.
16286 * sysdeps/m68k/coldfire/nofpu/math_private.h: Remove file.
16287 * sysdeps/tile/math_private.h: Likewise.
16288 * sysdeps/microblaze/math_private.h (libc_feholdexcept_setround):
16289 Remove macro.
16290 * sysdeps/nios2/math_private.h (libc_feholdexcept_setround):
16291 Likewise.
16292
16293 * sysdeps/m68k/coldfire/nofpu/math_private.h (libc_fesetround):
16294 Remove macro.
16295 (libc_fetestexcept): Likewise.
16296 (libc_feupdateenv_test): Likewise.
16297 * sysdeps/microblaze/math_private.h (libc_fesetround): Likewise.
16298 (libc_fetestexcept): Likewise.
16299 (libc_feupdateenv_test): Likewise.
16300 * sysdeps/nios2/math_private.h (libc_fesetround): Likewise.
16301 (libc_fetestexcept): Likewise.
16302 (libc_feupdateenv_test): Likewise.
16303 * sysdeps/tile/math_private.h (libc_fesetround): Likewise.
16304 (libc_fetestexcept): Likewise.
16305 (libc_feupdateenv_test): Likewise.
16306
16307 * sysdeps/generic/math_private.h
16308 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feholdexcept):
16309 New inline function.
16310 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feholdexcept):
16311 Likewise.
16312
16313 * include/fenv.h [!_ISOMAC && !FE_TONEAREST]: Give #error.
16314 [!_ISOMAC] (FE_HAVE_ROUNDING_MODES): New macro.
16315 * sysdeps/generic/math_private.h
16316 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fegetenv): New
16317 inline function.
16318 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fegetenv):
16319 Likewise.
16320 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fesetenv):
16321 Likewise.
16322 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fesetenv):
16323 Likewise.
16324 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feupdateenv):
16325 Likewise.
16326 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feupdateenv):
16327 Likewise.
16328 [!FE_HAVE_ROUNDING_MODES] (fegetround): Likewise.
16329 [!FE_HAVE_ROUNDING_MODES] (__fegetround): Likewise.
16330 [!FE_HAVE_ROUNDING_MODES] (fesetround): Likewise.
16331 [!FE_HAVE_ROUNDING_MODES] (__fesetround): Likewise.
16332 * sysdeps/tile/math_private.h (fegetenv): Remove inline function.
16333 (__fegetenv): Likewise.
16334 (fesetenv): Likewise.
16335 (__fesetenv): Likewise.
16336 (feupdateenv): Likewise.
16337 (__feupdateenv): Likewise.
16338 (fegetround): Likewise.
16339 (__fegetround): Likewise.
16340 (fesetround): Likewise.
16341 (__fesetround): Likewise.
16342
16343 * sysdeps/generic/math_private.h [FE_ALL_EXCEPT == 0]
16344 (feraiseexcept): New macro.
16345 [FE_ALL_EXCEPT == 0] (__feraiseexcept): Likewise.
16346 * sysdeps/m68k/coldfire/nofpu/math_private.h (feraiseexcept):
16347 Remove macro.
16348 (__feraiseexcept): Likewise.
16349 (feclearexcept): Likewise.
16350 * sysdeps/microblaze/math_private.h (feraiseexcept): Likewise.
16351 (__feraiseexcept): Likewise.
16352 (feclearexcept): Likewise.
16353 * sysdeps/nios2/math_private.h (feraiseexcept): Likewise.
16354 (__feraiseexcept): Likewise.
16355 (feclearexcept): Likewise.
16356 * sysdeps/tile/math_private.h (feraiseexcept): Likewise.
16357 (__feraiseexcept): Likewise.
16358 (feclearexcept): Likewise.
16359 (fetestexcept): Likewise.
16360
16361 * sysdeps/m68k/coldfire/math-tests.h: New file.
16362
16363 * sysdeps/m68k/fpu/bits/fenv.h: Move to ....
16364 * sysdeps/m68k/bits/fenv.h: ... here.
16365 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INEXACT): Do
16366 not define.
16367 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DIVBYZERO):
16368 Likewise.
16369 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UNDERFLOW):
16370 Likewise.
16371 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_OVERFLOW):
16372 Likewise.
16373 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INVALID):
16374 Likewise.
16375 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_ALL_EXCEPT):
16376 Define to 0.
16377 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__]
16378 (__FE_UNDEFINED): New enum constant.
16379 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_TOWARDZERO):
16380 Do not define.
16381 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DOWNWARD):
16382 Likewise.
16383 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UPWARD):
16384 Likewise.
16385 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (fenv_t): Define
16386 to match generic bits/fenv.h.
16387 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_NOMASK_ENV):
16388 Do not define.
16389
16390 * soft-fp/double.h (union _FP_UNION_D): Do not use attribute
16391 packed on bits.
16392 * soft-fp/extended.h (union _FP_UNION_E): Likewise.
16393 * soft-fp/half.h (union _FP_UNION_H): Likewise.
16394 * soft-fp/quad.h (union _FP_UNION_Q): Likewise.
16395 * soft-fp/single.h (union _FP_UNION_S): Likewise.
16396
16397 2018-02-01 Carlos O'Donell <carlos@redhat.com>
16398 Ramin Seyed-Moussavi <lordrasmus@gmail.com>
16399 Joseph Myers <joseph@codesourcery.com>
16400
16401 [BZ #21314]
16402 * sysdeps/ieee754/dbl-64/s_log1p.c: Include <libc-diag.h>.
16403 (__log1p): Disable -Wmaybe-uninitialized for -Os around
16404 computation using c.
16405 * sysdeps/ieee754/flt-32/s_log1pf.c: Include <libc-diag.h>.
16406 (__log1pf): Disable -Wmaybe-uninitialized for -Os around
16407 computation using c.
16408
16409 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
16410
16411 * version.h (RELEASE): Set to "development".
16412 (VERSION): Set to "2.27.9000".
16413 * NEWS (2.28): New section.
16414
16415 * version.h (RELEASE): Set to "stable".
16416 (VERSION): Set to "2.27".
16417 * include/features.h (__GLIBC_MINOR__): Set to 2.27.
16418
16419 * NEWS: Add the list of bugs fixed in 2.27.
16420
16421 2018-02-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
16422
16423 * stdlib/test-atexit-race-common.c (do_test): Check stack size
16424 against PTHREAD_STACK_MIN.
16425
16426 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
16427
16428 * manual/contrib.texi (Palmer Dabbelt, Arjun Shankar, Florian Weimer):
16429 New entries.
16430 (Rafal Luzynski, Andreas Schwab): Update.
16431
16432 2018-02-01 Rafal Luzynski <digitalfreak@lingonborough.com>
16433
16434 [BZ #10871]
16435 * NEWS: List the languages which actually use the alternative
16436 months feature in this release. Also explain that "alt_mon" and
16437 "ab_alt_mon" are optional.
16438
16439 2018-01-31 Il'ya Malakhov <ilmalakhov@yandex.ru>
16440
16441 [BZ #22765]
16442 * crypt/badsalttest.c (do_test): Set cd.initialized to 0.
16443
16444 2018-01-31 Dmitry V. Levin <ldv@altlinux.org>
16445
16446 * manual/install.texi (Tools for Compilation): Update the newest
16447 versions of gcc, binutils, texinfo, gawk, bison, and sed.
16448 * INSTALL: Regenerated.
16449
16450 2018-01-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
16451
16452 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Use __glibc_likely
16453 instead of __builtin_expect.
16454
16455 2018-01-30 Florian Weimer <fweimer@redhat.com>
16456
16457 * nss/bug17079.c (do_test): Use nss_files only for reading passwd
16458 data.
16459 * nss/tst-nss-getpwent.c (do_test): Likewise.
16460
16461 2018-01-30 Rafal Luzynski <digitalfreak@lingonborough.com>
16462
16463 [BZ #10871]
16464 * localedata/locales/hr_HR (mon): Rename to...
16465 (alt_mon): This.
16466 (mon): Import from CLDR (genitive case).
16467 (d_t_fmt): Update the comment.
16468
16469 2018-01-29 Andreas Schwab <schwab@linux-m68k.org>
16470
16471 * sysdeps/posix/fpathconf.c (__fpathconf): Verify the values of
16472 _POSIX_CHOWN_RESTRICTED, _POSIX_NO_TRUNC, _POSIX_VDISABLE.
16473 * sysdeps/posix/pathconf.c (__pathconf): Likewise.
16474
16475 2018-01-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
16476
16477 * mach/Versions: Fix version when __mach_host_self_ was added.
16478 * hurd/Versions: Fix version when _hurd_exec_paths was added.
16479 * sysdeps/mach/hurd/i386/ld.abilist: New file.
16480 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: New file.
16481 * sysdeps/mach/hurd/i386/libanl.abilist: New file.
16482 * sysdeps/mach/hurd/i386/libc.abilist: New file.
16483 * sysdeps/mach/hurd/i386/libcrypt.abilist: New file.
16484 * sysdeps/mach/hurd/i386/libdl.abilist: New file.
16485 * sysdeps/mach/hurd/i386/libm.abilist: New file.
16486 * sysdeps/mach/hurd/i386/libnsl.abilist: New file.
16487 * sysdeps/mach/hurd/i386/libresolv.abilist: New file.
16488 * sysdeps/mach/hurd/i386/librt.abilist: New file.
16489 * sysdeps/mach/hurd/i386/libutil.abilist: New file.
16490 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Commute operands of
16491 || to respect codestyle.
16492 * libio/tst-memstream3.c (_FWRITE): Rename to FWRITE_FUNC.
16493 (do_test_bz20181): Rename accordingly.
16494 * malloc/malloc.c: Include <assert.h>.
16495 (assert): Do not define.
16496 [!defined NDEBUG] (__assert_fail): Define to __malloc_assert.
16497 * bits/fcntl.h: Fix comment for FREAD and FWRITE.
16498 * sysdeps/mach/hurd/bits/fcntl.h: Likewise.
16499 * sysdeps/mach/hurd/hp-timing.h: New file.
16500 * sysdeps/mach/hurd/i386/tlsdesc.sym: New file.
16501
16502 2018-01-29 Darius Rad <darius@bluespec.com>
16503
16504 * sysdeps/unix/sysv/linux/riscv/ipc_priv.h: New file.
16505
16506 2018-01-29 Palmer Dabbelt <palmer@sifive.com>
16507
16508 * sysdeps/init_array/crti.S (.section .init_array): Add
16509 PREINIT_FUNCTION when defined.
16510 * manual/math.texi: RISC-V supports _Float128 and _Float64x.
16511 * config.h.in: Regenerate.
16512 * manual/platform.texi: Add RISC-V documenation for
16513 __riscv_flush_icache.
16514 * sysdeps/riscv/__longjmp.S: New file.
16515 * sysdeps/riscv/backtrace.c: Likewise.
16516 * sysdeps/riscv/bits/endian.h: Likewise.
16517 * sysdeps/riscv/bits/setjmp.h: Likewise.
16518 * sysdeps/riscv/bits/wordsize.h: Likewise.
16519 * sysdeps/riscv/bsd-_setjmp.c: Likewise.
16520 * sysdeps/riscv/bsd-setjmp.c: Likewise.
16521 * sysdeps/riscv/dl-trampoline.S: Likewise.
16522 * sysdeps/riscv/gccframe.h: Likewise.
16523 * sysdeps/riscv/jmpbuf-offsets.h: Likewise.
16524 * sysdeps/riscv/jmpbuf-unwind.h: Likewise.
16525 * sysdeps/riscv/machine-gmon.h: Likewise.
16526 * sysdeps/riscv/memusage.h: Likewise.
16527 * sysdeps/riscv/setjmp.S: Likewise.
16528 * sysdeps/riscv/sys/asm.h: Likewise.
16529 * sysdeps/riscv/tls-macros.h: Likewise.
16530 * sysdeps/riscv/dl-tls.h: New file.
16531 * sysdeps/riscv/libc-tls.c: Likewise.
16532 * sysdeps/riscv/nptl/tcb-offsets.sym: Likewise.
16533 * sysdeps/riscv/nptl/tls.h: Likewise.
16534 * sysdeps/riscv/stackinfo.h: Likewise.
16535 * sysdeps/riscv/bits/fenv.h: New file.
16536 * sysdeps/riscv/e_sqrtl.c: Likewise.
16537 * sysdeps/riscv/fpu_control.h: Likewise.
16538 * sysdeps/riscv/math-tests.h: Likewise.
16539 * sysdeps/riscv/nofpu/Implies: Likewise.
16540 * sysdeps/riscv/sfp-machine.h: Likewise.
16541 * sysdeps/riscv/tininess.h: Likewise.
16542 * sysdeps/riscv/rv64/rvd/s_ceil.c: New file.
16543 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
16544 * sysdeps/riscv/rv64/rvd/s_llrint.c: Likewise.
16545 * sysdeps/riscv/rv64/rvd/s_llround.c: Likewise.
16546 * sysdeps/riscv/rv64/rvd/s_lrint.c: Likewise.
16547 * sysdeps/riscv/rv64/rvd/s_lround.c: Likewise.
16548 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
16549 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
16550 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
16551 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
16552 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
16553 * sysdeps/riscv/rv64/rvf/s_llrintf.c: Likewise.
16554 * sysdeps/riscv/rv64/rvf/s_llroundf.c: Likewise.
16555 * sysdeps/riscv/rv64/rvf/s_lrintf.c: Likewise.
16556 * sysdeps/riscv/rv64/rvf/s_lroundf.c: Likewise.
16557 * sysdeps/riscv/rvd/e_sqrt.c: Likewise.
16558 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
16559 * sysdeps/riscv/rvd/s_finite.c: Likewise.
16560 * sysdeps/riscv/rvd/s_fma.c: Likewise.
16561 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
16562 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
16563 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
16564 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
16565 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
16566 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
16567 * sysdeps/riscv/rvf/e_sqrtf.c: Likewise.
16568 * sysdeps/riscv/rvf/fclrexcpt.c: Likewise.
16569 * sysdeps/riscv/rvf/fegetenv.c: Likewise.
16570 * sysdeps/riscv/rvf/fegetmode.c: Likewise.
16571 * sysdeps/riscv/rvf/fegetround.c: Likewise.
16572 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
16573 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
16574 * sysdeps/riscv/rvf/fesetexcept.c: Likewise.
16575 * sysdeps/riscv/rvf/fesetmode.c: Likewise.
16576 * sysdeps/riscv/rvf/fesetround.c: Likewise.
16577 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
16578 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
16579 * sysdeps/riscv/rvf/fraiseexcpt.c: Likewise.
16580 * sysdeps/riscv/rvf/fsetexcptflg.c: Likewise.
16581 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
16582 * sysdeps/riscv/rvf/get-rounding-mode.h: Likewise.
16583 * sysdeps/riscv/rvf/math_private.h: Likewise.
16584 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
16585 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
16586 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
16587 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
16588 * sysdeps/riscv/rvf/s_fmaf.c: Likewise.
16589 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
16590 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
16591 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
16592 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
16593 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
16594 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
16595 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
16596 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
16597 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
16598 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
16599 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
16600 * sysdeps/riscv/nptl/bits/pthreadtypes-arch.h: New file.
16601 * sysdeps/riscv/nptl/bits/semaphore.h: Likewise.
16602 * sysdeps/riscv/nptl/libc-lowlevellock.c: Likewise.
16603 * sysdeps/unix/sysv/linux/riscv/atomic-machine.h: Likewise.
16604 * sysdeps/riscv/nptl/nptl-sysdep.S: New file.
16605 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
16606 * sysdeps/unix/sysv/linux/riscv/clone.S: Likewise.
16607 * sysdeps/unix/sysv/linux/riscv/profil-counter.h: Likewise.
16608 * sysdeps/unix/sysv/linux/riscv/pt-vfork.S: Likewise.
16609 * sysdeps/unix/sysv/linux/riscv/syscall.c: Likewise.
16610 * sysdeps/unix/sysv/linux/riscv/sysdep.S: Likewise.
16611 * sysdeps/unix/sysv/linux/riscv/sysdep.h: Likewise.
16612 * sysdeps/unix/sysv/linux/riscv/vfork.S: Likewise.
16613 * sysdeps/riscv/nptl/pthread-offsets.h: New file.
16614 * sysdeps/riscv/nptl/pthreaddef.h: Likewise.
16615 * sysdeps/unix/sysv/linux/riscv/bits/fcntl.h: Likewise.
16616 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
16617 * sysdeps/unix/sysv/linux/riscv/bits/sigcontext.h: Likewise.
16618 * sysdeps/unix/sysv/linux/riscv/dl-cache.h: Likewise.
16619 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Likewise.
16620 * sysdeps/unix/sysv/linux/riscv/getcontext.S: Likewise.
16621 * sysdeps/unix/sysv/linux/riscv/init-first.c: Likewise.
16622 * sysdeps/unix/sysv/linux/riscv/libc-vdso.h: Likewise.
16623 * sysdeps/unix/sysv/linux/riscv/makecontext.c: Likewise.
16624 * sysdeps/unix/sysv/linux/riscv/readelflib.c: Likewise.
16625 * sysdeps/unix/sysv/linux/riscv/register-dump.h: Likewise.
16626 * sysdeps/unix/sysv/linux/riscv/setcontext.S: Likewise.
16627 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h: Likewise.
16628 * sysdeps/unix/sysv/linux/riscv/swapcontext.S: Likewise.
16629 * sysdeps/unix/sysv/linux/riscv/sys/cachectl.h: Likewise.
16630 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
16631 * sysdeps/unix/sysv/linux/riscv/sys/ucontext.h: Likewise.
16632 * sysdeps/unix/sysv/linux/riscv/sys/user.h: Likewise.
16633 * sysdeps/unix/sysv/linux/riscv/ucontext-macros.h: Likewise.
16634 * sysdeps/unix/sysv/linux/riscv/ucontext_i.sym: Likewise.
16635 * sysdeps/unix/sysv/linux/riscv/dl-static.c: New file.
16636 * sysdeps/unix/sysv/linux/riscv/ldconfig.h: Likewise.
16637 * sysdeps/unix/sysv/linux/riscv/ldsodefs.h: Likewise.
16638 * sysdeps/riscv/nofpu/libm-test-ulps: New file.
16639 * sysdeps/riscv/nofpu/libm-test-ulps-name: Likewise.
16640 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Likewise.
16641 * sysdeps/riscv/rv64/rvd/libm-test-ulps-name: Likewise.
16642 * sysdeps/unix/sysv/linux/riscv/localplt.data: Likewise.
16643 * sysdeps/unix/sysv/linux/riscv/rv64/c++-types.data: Likewise.
16644 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
16645 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
16646 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
16647 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
16648 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
16649 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
16650 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
16651 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
16652 * sysdeps/riscv/Implies: New file.
16653 * sysdeps/riscv/Makefile: Likewise.
16654 * sysdeps/riscv/configure: Likewise.
16655 * sysdeps/riscv/configure.ac: Likewise.
16656 * sysdeps/riscv/nptl/Makefile: Likewise.
16657 * sysdeps/riscv/preconfigure: Likewise.
16658 * sysdeps/riscv/rv64/Implies-after: Likewise.
16659 * sysdeps/riscv/rv64/rvd/Implies: Likewise.
16660 * sysdeps/riscv/rv64/rvf/Implies: Likewise.
16661 * sysdeps/unix/sysv/linux/riscv/Implies: Likewise.
16662 * sysdeps/unix/sysv/linux/riscv/Makefile: Likewise.
16663 * sysdeps/unix/sysv/linux/riscv/Versions: Likewise.
16664 * sysdeps/unix/sysv/linux/riscv/configure: Likewise.
16665 * sysdeps/unix/sysv/linux/riscv/configure.ac: Likewise.
16666 * sysdeps/unix/sysv/linux/riscv/ldd-rewrite.sed: Likewise.
16667 * sysdeps/unix/sysv/linux/riscv/rv64/Implies: Likewise.
16668 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Likewise.
16669 * sysdeps/unix/sysv/linux/riscv/shlib-versions: Likewise.
16670 * scripts/build-many-glibcs.py (Context): Add RISC-V targets.
16671 (Config): Likewise.
16672
16673 2018-01-29 Florian Weimer <fweimer@redhat.com>
16674
16675 [BZ #22701]
16676 * include/rpcsvc/nislib.h (__nis_default_ttl): Add
16677 libnsl_hidden_proto.
16678 * include/rpcsvc/yp.h (yp_xdrall): Declare with
16679 libnsl_hidden_proto.
16680 * include/rpcsvc/ypclnt.h (yp_maplist): Likewise.
16681 * nis/Makefile (libnsl-routines): Add nss-default only for
16682 build-obsolete-nsl.
16683 * nis/nis_defaults.c (__nis_default_ttl): Add
16684 libnsl_hidden_nolink_def.
16685 * nis/rpcsvc/ypclnt.h (yp_maplist): Remove #ifdef'ed-out
16686 declaration.
16687 * nis/yp_xdr.c (xdr_ypall): Add libnsl_hidden_nolink_def.
16688 * nis/ypclnt.c (yp_maplist): Likewise.
16689
16690 2018-01-29 Romain Naour <romain.naour@gmail.com> (tiny change)
16691
16692 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16693 (__ASSUME_COPY_FILE_RANGE) [__LINUX_KERNEL_VERSION < 0x040A00]: Undef.
16694
16695 2018-01-29 Joseph Myers <joseph@codesourcery.com>
16696
16697 * scripts/build-many-glibcs.py (Context.git_checkout): Use git
16698 clean -dxfq for git updates when replacing sources.
16699
16700 * scripts/build-many-glibcs.py (Config.build_gcc): Use
16701 --disable-libcilkrts unconditionally, not just for the final GCC
16702 build for Hurd.
16703
16704 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
16705 version to 4.15.
16706
16707 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16708
16709 [BZ #10871]
16710 * localedata/locales/lt_LT (alt_mon): Import from CLDR (nominative
16711 case).
16712
16713 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16714
16715 [BZ #10871]
16716 * localedata/locales/be_BY (mon): Rename to...
16717 (alt_mon): This, then synchronize with CLDR (nominative case).
16718 (abmon): Rename to...
16719 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
16720 (mon): Import from CLDR (genitive case).
16721 (abmon): Likewise.
16722 * localedata/locales/be_BY@latin (mon): Rename to...
16723 (alt_mon): This.
16724 (mon): Add, proper genitive forms provided by Viktar Siarheichyk.
16725
16726 * localedata/locales/be_BY@latin (lang_name): Reworded to
16727 "biełaruskaja mova".
16728
16729 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16730
16731 [BZ #10871]
16732 * localedata/locales/el_CY (mon): Renamed to...
16733 (alt_mon): This.
16734 (mon): Import from CLDR (genitive case).
16735 * localedata/locales/el_GR: Likewise.
16736
16737 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16738
16739 [BZ #10871]
16740 * localedata/locales/ru_RU (mon): Rename to...
16741 (alt_mon): This.
16742 (abmon): Rename to...
16743 (ab_alt_mon): This.
16744 (mon): Import from CLDR (genitive case).
16745 (abmon): Copy from the old content except the 5th month which is
16746 now in the genitive case, even when abbreviated.
16747 * localedata/locales/ru_UA: Likewise.
16748 * time/tst-strptime.c (day_tests): Add an actual example of
16749 a difference between %b and %Ob in Russian.
16750
16751 2018-01-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
16752
16753 * sysdeps/mach/hurd/xmknodat.c: Include <sys/sysmacros.h>.
16754 * sysdeps/mach/hurd/profil.c: Reuse `a' variable instead of introducing
16755 a `c' variable.
16756 * resolv/res-close.c: Include <stdlib.h>.
16757 * sysdeps/generic/not-cancel.h: Include <fcntl.h>, <unistd.h>,
16758 <sys/wait.h>, <time.h>, <sys/uio.h>.
16759 (NOT_CANCEL_H): Add inclusion guard.
16760 * sysdeps/generic/sigset-cvt-mask.h: Include <sigsetops.h>.
16761 * sysdeps/generic/sigsetops.h (__sigemptyset, __sigfillset,
16762 __sigandset, __sigorset, __sigaddset, __sigdelset): Make them really
16763 return 0.
16764 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Cast
16765 vm_address_t * to ElfW(Addr) * for dl_main parameter.
16766 * sysdeps/pthread/posix-timer.h (timer_ptr2id): Cast to timer_t
16767 instead of void *.
16768 * sysdeps/pthread/timer_create.c (timer_create): Do not use
16769 timer_ptr2id to cast struct timer_node * to void *.
16770 * scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
16771 --disable-libcilkrts to gcc configure.
16772 (checkout_vcs): Add mig and gnumach repository URLs, run autoreconf,
16773 and make them the default for now.
16774 * sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
16775 -DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
16776 * mach/Machrules (MIGFLAGS): Do not set -DMACH_IPC_COMPAT=0.
16777 * mach/mach/mach_traps.h: Drop comment about MACH_IPC_COMPAT.
16778 * sysdeps/mach/hurd/fork.c (__fork): Drop special casing
16779 MACH_IPC_COMPAT.
16780 * sysdeps/mach/hurd/dl-sysdep.c (_exit): Call LOSE and abort() if
16781 __task_terminate would ever return successfully.
16782 * sysdeps/mach/hurd/profil.c (special_profil_failure): Move variable
16783 to global scope.
16784 * sysdeps/mach/pagecopy.h (PAGE_THRESHOLD): Rename to
16785 PAGE_COPY_THRESHOLD and set to benchmarked 16384.
16786 * sysdeps/mach/hurd/getresgid.c (__getresgid): Set result from
16787 critical section to make code simpler and avoid warning.
16788 * sysdeps/mach/hurd/getresuid.c (__getresuid): Set result from
16789 critical section to make code simpler and avoid warning.
16790 * sysdeps/mach/hurd/spawni.c (__spawni): Make relpath and abspath
16791 const char * instead of char *.
16792 * hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
16793 __hurd_file_name_split, hurd_file_name_split,
16794 __hurd_directory_name_split, hurd_directory_name_split,
16795 __hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
16796 hurd_file_name_path_lookup): Make lookup function parameter take a
16797 const char *name instead of char *name.
16798 * hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
16799 __hurd_directory_name_split): Likewise.
16800 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
16801 * hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
16802 * sysdeps/mach/hurd/check_native.c: New file.
16803 * sysdeps/mach/hurd/check_pf.c: New file.
16804 * nscd/gai.c (__getifaddrs): Define macro to getifaddrs.
16805 (__freeifaddrs): Define macro to freeifaddrs.
16806 * sysdeps/mach/hurd/libhurduser.abilist: New file.
16807 * sysdeps/mach/libmachuser.abilist: New file.
16808 * libio/tst-memstream3.c (FWRITE): Rename to _FWRITE.
16809 (do_test_bz20181): Rename accordingly.
16810 * libio/tst-wmemstream3.c (FWRITE): Rename accordingly.
16811 * io/tst-copy_file_range.c [!defined CLONE_NEWNS]: Do not include
16812 <sys/mount.h>.
16813 * hurd/hurd.h (__hurd_fail): Always declare function, and provide inline
16814 version only if __USE_EXTERN_INLINES is defined.
16815 * hurd/hurd/fd.h (_hurd_fd_error_signal, _hurd_fd_error, __hurd_dfail,
16816 __hurd_sockfail): Likewise.
16817 (_hurd_fd_get): Always declare functions, and provide inline versions
16818 only if __USE_EXTERN_INLINES and _LIBC are defined and IS_IN(libc).
16819 * hurd/hurd/port.h (_hurd_port_init, _hurd_port_locked_get,
16820 _hurd_port_get, _hurd_port_free, _hurd_port_locked_set,
16821 _hurd_port_set): Always declare functions, and provide inline versions
16822 only if __USE_EXTERN_INLINES and _LIBC are defined and
16823 IS_IN(libc).
16824 * hurd/hurd/signal.h (_hurd_self_sigstate, _hurd_critical_section_lock,
16825 _hurd_critical_section_unlock): Likewise.
16826 * hurd/hurd/threadvar.h (__hurd_threadvar_location_from_sp,
16827 * __hurd_threadvar_location): Likewise.
16828 * hurd/hurd/userlink.h (_hurd_userlink_link, _hurd_userlink_unlink,
16829 _hurd_userlink_clear): Likewise.
16830 * mach/lock-intern.h (__spin_lock_init, __spin_lock, __mutex_lock,
16831 __mutex_unlock, __mutex_trylock): Always declare functions, and provide
16832 inline versions only if __USE_EXTERN_INLINES and _LIBC are defined.
16833 * mach/mach/mig_support.h (__mig_strncpy): Likewise.
16834 * sysdeps/generic/machine-lock.h (__spin_unlock, __spin_try_lock,
16835 __spin_lock_locked): Likewise.
16836 * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock,
16837 __spin_lock_locked): Likewise.
16838 * mach/spin-lock.c (__USE_EXTERN_INLINES): Define to 1.
16839 * hurd/Versions (libc: GLIBC_2.27): Add _hurd_fd_error_signal,
16840 _hurd_fd_error, __hurd_dfail, __hurd_sockfail, _hurd_port_locked_set,
16841 __hurd_threadvar_location_from_sp, __hurd_threadvar_location,
16842 _hurd_userlink_link, _hurd_userlink_unlink, _hurd_userlink_clear.
16843 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_CHOWN_RESTRICTED,
16844 _POSIX_NO_TRUNC): Define to 0.
16845 * sysdeps/pthread/allocalim.h [!defined PTHREAD_STACK_MIN]: Do not
16846 check size against PTHREAD_STACK_MIN.
16847 * hurd/hurd/signal.h [__USE_EXTERN_INLINES][_LIBC][IS_IN(libc) ||
16848 IS_IN(libpthread)]: Include <sigsetops.h>.
16849 * mach/Makefile (user-interfaces): Add mach/gnumach.
16850 * sysdeps/mach/configure.ac (mach_interface_list): Add gnumach.
16851 * sysdeps/mach/configure (mach_interface_list): Regenerate.
16852 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
16853 instead of invalid -1.
16854 * sysdeps/mach/hurd/net/ethernet.h: Include <stdint.h>.
16855 * sysdeps/mach/hurd/net/if_arp.h: Include <stdint.h>.
16856 * sysdeps/mach/hurd/net/if_ppp.h: Do not include non-existing
16857 <net/ppp_defs.h>.
16858
16859 2018-01-27 Thomas Schwinge <tschwinge@gnu.org>
16860
16861 * hurd/fcntl-internal.h: New file.
16862
16863 2018-01-27 James Clarke <jrtc27@jrtc27.com>
16864
16865 * sysdeps/hppa/fpu/libm-test-ulps: Update.
16866
16867 * sysdeps/alpha/fpu/libm-test-ulps: Update.
16868
16869 2018-01-26 Andreas Schwab <schwab@linux-m68k.org>
16870
16871 [BZ #22701]
16872 * nis/Makefile (libnsl-inhibit-o) [$(build-obsolete-nsl) != yes]:
16873 Build only shared objects.
16874
16875 2018-01-26 Carlos O'Donell <carlos@redhat.com>
16876
16877 * README: Update for hppa.
16878
16879 2018-01-26 Patrick McGehearty <patrick.mcgehearty@oracle.com>
16880
16881 * sysdeps/sparc/fpu/libm-test-ulps: Update
16882 cpow, ctan, ctanh, j0, j1, y0, yn ulps.
16883
16884 2018-01-26 Carlos O'Donell <carlos@redhat.com>
16885
16886 Revert:
16887
16888 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
16889
16890 [BZ #22563]
16891 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
16892 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
16893 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
16894 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
16895 to feature_1.
16896
16897 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
16898
16899 [BZ #22563]
16900 * bits/types/__cancel_jmp_buf_tag.h: New file.
16901 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
16902 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
16903 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
16904 * nptl/Makefile (headers): Add
16905 bits/types/__cancel_jmp_buf_tag.h.
16906 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
16907 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
16908 * sysdeps/nptl/pthread.h: Include
16909 <bits/types/__cancel_jmp_buf_tag.h>.
16910 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
16911 __cancel_jmp_buf.
16912 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
16913
16914 2018-01-25 Rafal Luzynski <digitalfreak@lingonborough.com>
16915
16916 [BZ #10871]
16917 * localedata/locales/uk_UA (mon): Renamed to...
16918 (alt_mon): This.
16919 (alt_digits): "0" removed and then renamed to...
16920 (mon): This.
16921 (date_fmt): Definition changed not to use the alternative
16922 digits hack.
16923
16924 2018-01-25 Palmer Dabbelt <palmer@sifive.com>
16925
16926 * elf/cache.c (print_entry): Add FLAG_RISCV_FLOAT_ABI_SOFT and
16927 FLAG_RISCV_FLOAT_ABI_DOUBLE.
16928 * elf/elf.h (EF_RISCV_RVC): New define.
16929 (EF_RISCV_FLOAT_ABI): Likewise.
16930 (EF_RISCV_FLOAT_ABI_SOFT): Likewise.
16931 (EF_RISCV_FLOAT_ABI_SINGLE): Likewise.
16932 (EF_RISCV_FLOAT_ABI_DOUBLE): Likewise.
16933 (EF_RISCV_FLOAT_ABI_QUAD): Likewise.
16934 * sysdeps/generic/ldconfig.h (FLAG_RISCV_FLOAT_ABI_SOFT): New
16935 define.
16936 (FLAG_RISCV_FLOAT_ABI_DOUBLE): Likewise.
16937
16938 2018-01-25 Andreas Schwab <schwab@suse.de>
16939
16940 * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): Consistently put arguments in
16941 single quotes.
16942 * sysdeps/gnu/configure: Regenerate.
16943 * sysdeps/unix/sysv/linux/aarch64/configure: Regenerate.
16944 * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
16945 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
16946 * sysdeps/unix/sysv/linux/s390/s390-64/configure: Regenerate.
16947 * sysdeps/unix/sysv/linux/sparc/sparc64/configure: Regenerate.
16948 * sysdeps/unix/sysv/linux/tile/configure: Regenerate.
16949 * sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerate.
16950 * sysdeps/unix/sysv/linux/x86_64/x32/configure: Regenerate.
16951
16952 2018-01-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
16953
16954 * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository
16955 URL, and run autoconf, make it the default for now.
16956
16957 2018-01-24 Joseph Myers <joseph@codesourcery.com>
16958
16959 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
16960 soft-float ColdFire configuration.
16961
16962 * sysdeps/unix/sysv/linux/m68k/localplt.data: Move to ....
16963 * sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data: ... here.
16964 * sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data: New file.
16965
16966 * sysdeps/m68k/coldfire/nofpu/math_private.h: New file. Based on
16967 MicroBlaze file.
16968
16969 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: Move to
16970 ....
16971 * sysdeps/unix/sysv/linux/m68k/coldfire/fpu/jmp_buf-macros.h:
16972 ... here.
16973 * sysdeps/unix/sysv/linux/m68k/coldfire/nofpu/jmp_buf-macros.h:
16974 New file.
16975
16976 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Move to ....
16977 * sysdeps/unix/sysv/linux/m68k/m680x0/jmp_buf-macros.h: ... here.
16978 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: New
16979 file.
16980
16981 2018-01-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
16982
16983 [BZ #22742]
16984 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__glibc_reserved1):
16985 Rename to __reserved and add comment.
16986 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (__glibc_reserved1):
16987 Rename to __reserved.
16988
16989 2018-01-24 Joseph Myers <joseph@codesourcery.com>
16990
16991 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
16992 i686-gnu configurations.
16993 (Context.run_builds): Include mig, gnumach and hurd in components
16994 considered.
16995 (Context.checkout): Add mig, gnumach and hurd to components.
16996 (Context.checkout_tar): Add URL mappings for mig, gnumach and
16997 hurd.
16998 (Context.bot_cycle): Check for changes to mig, gnumach and hurd.
16999 (Config.build): Install gnumach headers, build mig and install
17000 hurd headers for 'gnu' OS.
17001 (Config.install_gnumach_headers): New function.
17002 (Config.install_hurd_headers): Likewise.
17003 (Glibc.build_glibc): Do not use /usr for 'gnu' OS. Specifiy MIG
17004 when building for 'gnu' OS.
17005
17006 2018-01-23 Tobias Klauser <tklauser@distanz.ch>
17007
17008 * manual/tunables.texi (Hardware Capability Tunables): Fix
17009 spelling.
17010
17011 2018-01-22 Rical Jasan <ricaljasan@pacific.net>
17012
17013 * manual/locale.texi (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4)
17014 (ALTMON_5, ALTMON_6, ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10)
17015 (ALTMON_11, ALTMON_12): Improve documentation.
17016 * manual/time.texi (strftime): Likewise.
17017
17018 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17019
17020 [BZ #10871]
17021 * localedata/locales/pl_PL: Alternative month names added,
17022 primary month names are genitive now.
17023 * time/tst-strptime.c (day_tests): Actually use a genitive case
17024 of a month name in Polish language.
17025
17026 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17027
17028 [BZ #10871]
17029 * manual/locale.texi: Document ALTMON_1..12 constants for
17030 nl_langinfo. Specify when to use ALTMON instead of MON.
17031 * manual/time.texi (strftime, strptime): Document GNU extension
17032 permitting O modifier with %B and %b. Specify when to use
17033 %OB instead of %B.
17034
17035 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17036
17037 [BZ #10871]
17038 * locale/C-time.c (_nl_C_LC_TIME): Add abbreviated alternative month
17039 names, define them as the same as abbreviated month names explicitly.
17040 * locale/categories.def (LC_TIME): Add ab_alt_mon and wide-ab_alt_mon.
17041 * locale/langinfo.h: (_NL_ABALTMON_1, _NL_ABALTMON_2, _NL_ABALTMON_3,
17042 _NL_ABALTMON_4, _NL_ABALTMON_5, _NL_ABALTMON_6, _NL_ABALTMON_7,
17043 _NL_ABALTMON_8, _NL_ABALTMON_9, _NL_ABALTMON_10, _NL_ABALTMON_11,
17044 _NL_ABALTMON_12, _NL_WABALTMON_1, _NL_WABALTMON_2, _NL_WABALTMON_3,
17045 _NL_WABALTMON_4, _NL_WABALTMON_5, _NL_WABALTMON_6, _NL_WABALTMON_7,
17046 _NL_WABALTMON_8, _NL_WABALTMON_9, _NL_WABALTMON_10, _NL_WABALTMON_11,
17047 _NL_WABALTMON_12): New enum constants.
17048 * locale/programs/ld-time.c (struct locale_time_t): Add ab_alt_mon,
17049 wab_alt_mon, and ab_alt_mon_defined members.
17050 (time_output): Output ab_alt_mon and wab_alt_mon members.
17051 (time_read): Read them, initialize them as copies of abmon and wabmon
17052 respectively if they are missing, initialize ab_alt_mon_defined.
17053 * locale/programs/locfile-kw.gperf (ab_alt_mon): Define.
17054 * locale/programs/locfile-kw.h: Regenerate.
17055 * locale/programs/locfile-token.h (tok_ab_alt_mon): New enum constant.
17056 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add es_ES.UTF-8
17057 and ru_RU.UTF-8.
17058 * time/strftime_l.c (a_altmonth, aam_len): New macros.
17059 [!COMPILE_WIDE] (ABALTMON_1): New macro.
17060 (__strftime_internal): Handle %Ob and %Oh formats.
17061 * time/strptime_l.c [_LIBC] (ab_alt_month_name): New macro.
17062 (__strptime_internal): Handle %Ob and %Oh formats.
17063 * time/tst-strptime.c (day_tests): Add more tests to parse different
17064 forms of month names including the new %Ob format specifier.
17065
17066 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17067
17068 [BZ #10871]
17069 * locale/C-time.c (_nl_C_LC_TIME): Add alternative month names,
17070 define them as the same as primary full month names explicitly.
17071 * locale/categories.def (LC_TIME): Add alt_mon and wide-alt_mon.
17072 * locale/langinfo.h (__ALTMON_1, __ALTMON_2, __ALTMON_3, __ALTMON_4,
17073 __ALTMON_5, __ALTMON_6, __ALTMON_7, __ALTMON_8, __ALTMON_9, __ALTMON_10,
17074 __ALTMON_11, __ALTMON_12, _NL_WALTMON_1, _NL_WALTMON_2, _NL_WALTMON_3,
17075 _NL_WALTMON_4, _NL_WALTMON_5, _NL_WALTMON_6, _NL_WALTMON_7,
17076 _NL_WALTMON_8, _NL_WALTMON_9, _NL_WALTMON_10, _NL_WALTMON_11,
17077 _NL_WALTMON_12): New enum constants.
17078 [__USE_GNU] (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4, ALTMON_5, ALTMON_6,
17079 ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10, ALTMON_11, ALTMON_12): New
17080 macros.
17081 * locale/programs/ld-time.c (struct locale_time_t): Add alt_mon,
17082 walt_mon, and alt_mon_defined members.
17083 (time_output): Output alt_mon and walt_mon members.
17084 (time_read): Read them, initialize them as copies of mon and wmon
17085 respectively if they are missing, initialize alt_mon_defined.
17086 * locale/programs/locfile-kw.gperf (alt_mon): Define.
17087 * locale/programs/locfile-kw.h: Regenerate.
17088 * locale/programs/locfile-token.h (tok_alt_mon): New enum constant.
17089 * localedata/tst-langinfo.c (map): Add tests for the new constants
17090 ALTMON_1 .. ALTMON_12.
17091 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add fr_FR.UTF-8
17092 and pl_PL.UTF-8.
17093 * time/strftime_l.c (f_altmonth): New macro.
17094 (__strftime_internal): Handle %OB format.
17095 * time/strptime_l.c [_LIBC] (alt_month_name): New macro.
17096 (__strptime_internal): Handle %OB format.
17097 * time/tst-strptime.c (day_tests): Add tests to parse different forms
17098 of month names including the new %OB format specifier.
17099
17100 2018-01-19 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17101
17102 [BZ #22685]
17103 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Renamed
17104 from ABORT_TRANSACTION.
17105 (ABORT_TRANSACTION): Redirect to ABORT_TRANSACTION_IMPL.
17106 * sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION,
17107 ABORT_TRANSACTION_IMPL): Likewise.
17108 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: New file. Reuse
17109 Linux code, but remove the code that aborts transactions.
17110
17111 2018-01-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
17112
17113 * sysdeps/generic/netinet/if_ether.h: Include <stdint.h>.
17114
17115 2018-01-19 Rafal Luzynski <digitalfreak@lingonborough.com>
17116
17117 * localedata/locales/gu_IN (LC_IDENTIFICATION): Fix an obvious typo
17118 in date: "2004-14-09" should be "2004-09-14".
17119 * localedata/locales/lo_LA: Fix an obvious typo in date in the header:
17120 "2003-15-09" should be "2003-09-15".
17121
17122 2018-01-18 Arjun Shankar <arjun@redhat.com>
17123
17124 [BZ #22343]
17125 [BZ #22774]
17126 CVE-2018-6485
17127 CVE-2018-6551
17128 * malloc/malloc.c (checked_request2size): call REQUEST_OUT_OF_RANGE
17129 after padding.
17130 (_int_memalign): check for integer overflow before calling
17131 _int_malloc.
17132 * malloc/tst-malloc-too-large.c: New test.
17133 * malloc/Makefile: Add tst-malloc-too-large.
17134
17135 2018-01-18 Rafal Luzynski <digitalfreak@lingonborough.com>
17136
17137 * localedata/locales/bho_NP (LC_IDENTIFICATION): Fix an obvious typo
17138 in date: "2017-24-07" should be "2017-07-24".
17139 * localedata/locales/mai_IN: Likewise.
17140 * localedata/locales/mai_NP: Likewise.
17141
17142 2018-01-17 Dmitry V. Levin <ldv@altlinux.org>
17143
17144 * po/ru.po: Update translations.
17145
17146 2018-01-17 Joseph Myers <joseph@codesourcery.com>
17147
17148 [BZ #22719]
17149 * sysdeps/hppa/backtrace.c: New file.
17150
17151 2018-01-17 H.J. Lu <hongjiu.lu@intel.com>
17152
17153 [BZ #22715]
17154 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_profile): Properly
17155 align La_x86_64_retval to VEC_SIZE.
17156
17157 2018-01-16 Joseph Myers <joseph@codesourcery.com>
17158
17159 * sysdeps/x86_64/backtrace.c: Include <gnu/lib-names.h>.
17160 (init): Use LIBGCC_S_SO not hardcoded "libgcc_s.so.1".
17161
17162 2018-01-16 Florian Weimer <fweimer@redhat.com>
17163
17164 * nptl/Makefile [$(have-cxx-thread_local)] (tests-unsupported):
17165 Move tst-thread-exit-clobber ...
17166 [$(CXX)] (tests-unsupported): ... to here.
17167
17168 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
17169
17170 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SHA3): Define.
17171 (HWCAP_SM3, HWCAP_SM4, HWCAP_ASIMDDP, HWCAP_SHA512, HWCAP_SVE): Define.
17172 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
17173 (_dl_aarch64_cap_flags): Update.
17174 (_DL_HWCAP_COUNT): Update.
17175
17176 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
17177
17178 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h
17179 (_DL_HWCAP_LAST): Remove.
17180 (_DL_HWCAP_COUNT): Move to ...
17181 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
17182 (_DL_HWCAP_COUNT): ... here.
17183
17184 2018-01-16 Florian Weimer <fweimer@redhat.com>
17185
17186 * nptl/Makefile (CFLAGS-tst-minstack-throw.o): Compile in C++11
17187 mode with GNU extensions.
17188
17189 2018-01-15 Alan Hayward <alan.hayward@arm.com>
17190
17191 * elf/elf.h (NT_ARM_SVE): Define.
17192
17193 2018-01-15 Florian Weimer <fweimer@redhat.com>
17194
17195 [BZ #22636]
17196 * nptl/tst-minstack-throw.cc: New file.
17197 * nptl/Makefile (tests): Add tst-minstack-throw.
17198 (LDLIBS-tst-minstack-throw): Link with libstdc++.
17199 [!CXX] (tests-unsupported): Add tst-minstack-throw.
17200
17201 2018-01-15 Joseph Myers <joseph@codesourcery.com>
17202
17203 * scripts/build-many-glibcs.py (Context.checkout): Default
17204 binutils version to 2.30 branch, MPFR version to 4.0.0 and MPC
17205 version to 1.1.0.
17206
17207 2018-01-13 Carlos O'Donell <carlos@redhat.com>
17208
17209 [BZ #22707]
17210 * elf/elf.h (DF_1_STUB): Define.
17211 (DF_1_PIE): Define.
17212
17213 2018-01-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17214
17215 [BZ #22697]
17216 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
17217 Do not add 0.5 to integer or out-of-range arguments.
17218
17219 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
17220
17221 * po/bg.po: Update translations.
17222 * po/cs.po: Likewise.
17223 * po/de.po: Likewise.
17224 * po/ko.po: Likewise.
17225 * po/pl.po: Likewise.
17226 * po/sv.po: Likewise.
17227 * po/uk.po: Likewise.
17228 * po/vi.po: Likewise.
17229
17230 2018-01-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
17231
17232 * aarch64/start.S (_start): Use __wrap_main.
17233 (__wrap_main): New local symbol.
17234
17235 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
17236
17237 [BZ #22679]
17238 CVE-2018-1000001
17239 * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Fall back to
17240 generic_getcwd if the path returned by getcwd syscall is not absolute.
17241 * io/tst-getcwd-abspath.c: New test.
17242 * io/Makefile (tests): Add tst-getcwd-abspath.
17243
17244 2018-01-12 Istvan Kurucsai <pistukem@gmail.com>
17245
17246 * malloc/malloc.c (malloc_consolidate): Add size check.
17247
17248 2018-01-12 Florian Weimer <fweimer@redhat.com>
17249
17250 * support/write_message.c (write_message): Preserve errno.
17251 * support/check.c (print_failure): Likewise.
17252 * support/support_test_verify_impl.c (support_test_verify_impl):
17253 Likewise.
17254 * support/support_test_compare_failure.c
17255 (support_test_compare_failure): Likewise.
17256
17257 2018-01-12 Florian Weimer <fweimer@redhat.com>
17258
17259 [BZ #22701]
17260 * nis/Makefile (install-lib-ldscripts, $(inst_libdir)/libnsl.so):
17261 Prevent installation of libnsl.so.
17262 (libnsl-inhibit-o): Do not build (or install) static libraries.
17263
17264 2018-01-12 Egmont Koblinger <egmont@gmail.com>
17265
17266 [BZ #22657]
17267 * localedata/locales/hu_HU (d_t_fmt): Avoid a leading space
17268 before the day number which may produce a double space.
17269 (date_fmt): Likewise.
17270
17271 2018-01-12 Joseph Myers <joseph@codesourcery.com>
17272
17273 * sysdeps/s390/fpu/feholdexcpt.c (__feholdexcept): Call __fegetenv
17274 instead of fegetenv.
17275
17276 2018-01-11 Joseph Myers <joseph@codesourcery.com>
17277
17278 [BZ #22702]
17279 * sysdeps/generic/math_private.h (libc_feresetround_noex): Update
17280 comment to say exceptions are discarded.
17281 (libc_feholdsetround_noex_ctx): Use __feholdexcept instead of
17282 __fegetenv.
17283 (SET_RESTORE_ROUND_NOEX): Update comment to say non-stop mode must
17284 be enabled.
17285
17286 2018-01-11 Florian Weimer <fweimer@redhat.com>
17287
17288 * sysdeps/gnu/unwind-resume.c (__libgcc_s_init): Update comment
17289 and error message.
17290
17291 2018-01-11 Florian Weimer <fweimer@redhat.com>
17292
17293 [BZ #22636]
17294 * nptl/Makefile (tests): Add tst-minstack-cancel, tst-minstack-exit.
17295 * nptl/tst-minstack-cancel.c, nptl/tst-minstack-exit.c: New files.
17296
17297 2018-01-10 Joseph Myers <joseph@codesourcery.com>
17298
17299 [BZ #22693]
17300 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Handle
17301 negative arguments in test for NaN or infinity argument.
17302
17303 2018-01-10 Dmitry V. Levin <ldv@altlinux.org>
17304
17305 * po/libc.pot: Regenerate.
17306
17307 2018-01-10 Florian Weimer <fweimer@redhat.com>
17308
17309 [BZ #22636]
17310 * sysdeps/nptl/unwind-forcedunwind.c (pthread_cancel_init): Open
17311 libgcc.so with RTLD_NOW, to avoid lazy binding during unwind.
17312
17313 2018-01-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
17314
17315 * hurd/hurd/fd.h: Include <fcntl.h>
17316 (__hurd_at_flags): New function.
17317 * hurd/lookup-at.c (__file_name_lookup_at): Replace flag computation
17318 with call to __hurd_at_flags.
17319 * include/unistd.h (__faccessat, __faccessat_noerrno): Add declaration.
17320 * sysdeps/mach/hurd/access.c (access_common): Move implementation to
17321 __faccessat
17322 (hurd_fail_seterrno, hurd_fail_noerrno): Move to sysdeps/mach/hurd/faccessat.c.
17323 (__access_noerrno): Use __faccessat_common instead of access_common.
17324 (__access): Likewise.
17325 * sysdeps/mach/hurd/euidaccess.c (__euidaccess): Replace implementation
17326 with a call to __faccessat.
17327 * sysdeps/mach/hurd/faccessat.c (faccessat): Rename into...
17328 (__faccessat_common): ... this. Move implementation of __access into it when
17329 AT_FLAGS does not contain AT_EACCESS. Make it call __hurd_at_flags, add
17330 reauthenticate_cwdir_at helper to implement AT mechanism.
17331 (__faccessat_noerrno): New function, just calls __faccessat_common.
17332 (__faccessat): New function, just calls __faccessat_common.
17333 (faccessat): Define weak alias.
17334
17335 2018-01-10 Joseph Myers <joseph@codesourcery.com>
17336
17337 [BZ #22691]
17338 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
17339 (CFLAGS-s_fmaxmagl.c): New variable.
17340 [$(subdir) = math] (CFLAGS-s_fminmagl.c: Likewise.
17341
17342 [BZ #22690]
17343 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Use unsigned
17344 long int for arguments of possibly overflowing addition or
17345 subtraction.
17346 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
17347
17348 2018-01-09 Joseph Myers <joseph@codesourcery.com>
17349
17350 [BZ #22688]
17351 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
17352 (CFLAGS-e_remainderl.c): New variable.
17353
17354 [BZ #22687]
17355 * sysdeps/powerpc/nofpu/Makefile (CFLAGS-s_cacosl.c): New
17356 variable.
17357 (CFLAGS-s_cacoshl.c): Likewise.
17358 (CFLAGS-s_casinhl.c): Likewise.
17359 (CFLAGS-s_catanl.c): Likewise.
17360 (CFLAGS-s_catanhl.c): Likewise.
17361 (CFLAGS-s_cexpl.c): Likewise.
17362 (CFLAGS-s_ccoshl.c): Add -fsignaling-nans.
17363 (CFLAGS-s_csinhl.c): Likewise.
17364 (CFLAGS-s_clogl.c): Likewise.
17365 (CFLAGS-s_clog10l.c): Likewise.
17366 (CFLAGS-s_csinl.c): Likewise.
17367 (CFLAGS-s_csqrtl.c): Likewise.
17368
17369 2017-01-09 Emilio Pozuelo Monfort <pochu27@gmail.com>
17370 2017-01-09 Svante Signell <svante.signell@gmail.com>
17371
17372 * hurd/hurdexec.c (_hurd_exec): Deprecate function.
17373 (_hurd_exec_paths): New function.
17374 * hurd/hurd.h (_hurd_exec): Deprecate function.
17375 (_hurd_exec_paths): Declare function.
17376 * hurd/Versions: Export _hurd_exec_paths.
17377 * sysdeps/mach/hurd/execve.c: Include <stdlib.h> and <stdio.h>
17378 (__execve): Use __getcwd to build absolute path, and use
17379 _hurd_exec_paths instead of _hurd_exec.
17380 * sysdeps/mach/hurd/spawni.c: Likewise.
17381 * sysdeps/mach/hurd/fexecve.c: Use _hurd_exec_paths instead of
17382 _hurd_exec.
17383
17384 2018-01-08 Dmitry V. Levin <ldv@altlinux.org>
17385
17386 * sysdeps/unix/sysv/linux/tst-ttyname.c (do_in_chroot_1): Skip the
17387 test instead of failing in case of ENOENT returned by posix_openpt.
17388
17389 2018-01-08 Florian Weimer <fweimer@redhat.com>
17390
17391 resolv: Support binary labels in test framework.
17392 * support/resolv_test.c (struct to_be_freed): Remove.
17393 (struct compressed_name): New.
17394 (allocate_compressed_name, ascii_tolower)
17395 (compare_compressed_name): New functions.
17396 (struct resolv_response_builder): Update type of
17397 compression_offsets for use with tsearch. Rempve to_be_freed.
17398 (response_push_pointer_to_free): Remove function.
17399 (resolv_response_add_name): Rewrite using struct compressed_name
17400 and tsearch instead of hsearch_r.
17401 (response_builder_allocate): Remove initialization of
17402 compression_offsets.
17403 (response_builder_free): Update for removal of to_be_freed. Use
17404 tdestroy instead of hdestroy_r.
17405 * resolv/Makefile (tests): Add tst-resolv-binary.
17406 (tst-resolv-binary): Link with -lresolv -lpthread.
17407
17408 2018-01-08 Florian Weimer <fweimer@redhat.com>
17409
17410 * support/check.h (TEST_COMPARE): Allow sign mismatch at compile
17411 time. Pass positive flag instead of negative flag to
17412 support_test_compare_failure.
17413 (support_test_compare_failure): Change negative parameter to
17414 positive.
17415 * support/support_test_compare_failure.c (report)
17416 (support_test_compare_failure): Likewise.
17417 * support/tst-test_compare.c (return_ssize_t, return_int): New.
17418 (do_test): Check int/size_t, ssize_t/size_t comparisons.
17419
17420 2018-01-08 Szabolcs Nagy <szabolcs.nagy@arm.com>
17421
17422 [BZ #22637]
17423 * nptl/descr.h (stackblock, stackblock_size): Update comments.
17424 * nptl/allocatestack.c (allocate_stack): Add guardsize to stacksize.
17425 * nptl/nptl-init.c (__pthread_get_minstack): Remove guardsize from
17426 stacksize.
17427 * nptl/pthread_getattr_np.c (pthread_getattr_np): Likewise.
17428
17429 2018-01-08 H.J. Lu <hongjiu.lu@intel.com>
17430
17431 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
17432 Add s_sincosf-sse2 and s_sincosf-fma.
17433 (CFLAGS-s_sincosf-fma.c): New.
17434 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: New file.
17435 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
17436 * sysdeps/x86_64/fpu/multiarch/s_sincosf.c: Likewise.
17437 * sysdeps/x86_64/fpu/s_sincosf.S: Don't add alias if
17438 __sincosf is defined.
17439
17440 2018-01-08 Florian Weimer <fweimer@redhat.com>
17441
17442 * nptl/tst-thread-exit-clobber.cc: New file.
17443 * nptl/Makefile (CFLAGS-tst-thread-exit-clobber.o): Compile in
17444 C++11 mode.
17445 (LDLIBS-tst-thread-exit-clobber): Link with libstdc++.
17446 (tests): Add tst-thread-exit-clobber.
17447 [!CXX] (tests-unsupported): Add tst-thread-exit-clobber.
17448
17449 2018-01-08 Florian Weimer <fweimer@redhat.com>
17450
17451 * support/check.h (support_static_assert): Define.
17452 (TEST_COMPARE): Use it.
17453
17454 2018-01-07 Aurelien Jarno <aurelien@aurel32.net>
17455
17456 * sysdeps/unix/sysv/linux/getrlimit64 (getrlimit64)
17457 [!__RLIM_T_MATCHES_RLIM64_T]
17458 [!SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2)]: Define as weak alias of
17459 __getrlimit64. Add libc_hidden_weak.
17460
17461 2018-01-06 Palmer Dabbelt <palmer@sifive.com>
17462
17463 * elf/elf.h (R_RISCV_NONE): New define.
17464 (R_RISCV_32): Likewise.
17465 (R_RISCV_64): Likewise.
17466 (R_RISCV_RELATIVE): Likewise.
17467 (R_RISCV_COPY): Likewise.
17468 (R_RISCV_JUMP_SLOT): Likewise.
17469 (R_RISCV_TLS_DTPMOD32): Likewise.
17470 (R_RISCV_TLS_DTPMOD64): Likewise.
17471 (R_RISCV_TLS_DTPREL32): Likewise.
17472 (R_RISCV_TLS_DTPREL64): Likewise.
17473 (R_RISCV_TLS_TPREL32): Likewise.
17474 (R_RISCV_TLS_TPREL64): Likewise.
17475 * Makerules (make-link-multidir): Make directories before linking into
17476 them.
17477 * sysdeps/unix/sysv/linux/dl-vdso.h (VDSO_NAME_LINUX_4_15): New
17478 define.
17479 (VDSO_HASH_LINUX_4_15): Likewise.
17480 * scripts/build-many-glibcs.py (class Glibc): Strip shared objects
17481 in subdirectories of lib.
17482 * nptl/Makefile (/librt.so): Always depend on
17483 "$(shared-thread-library)".
17484
17485 2018-01-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
17486
17487 * sysdeps/mach/hurd/i386/jmp_buf-macros.h: New file.
17488 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic) [NO_RTLD_HIDDEN]: Call
17489 JUMPTARGET (___tls_get_addr) instead of HIDDEN_JUMPTARGET
17490 (___tls_get_addr).
17491 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Likewise.
17492 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
17493 "-O2 -march=i686".
17494 * posix/tst-glob_symlinks.c [!PATH_MAX]: Define PATH_MAX macro.
17495 * sysdeps/gnu/glob64.c (__glob): Define macro instead of glob macro.
17496 (__glob64): Define GLIBC_2_27 versioned symbol instead of glob64.
17497 * sysdeps/gnu/glob-lstat-compat.c: New file.
17498 * sysdeps/gnu/glob64-lstat-compat.c: New file.
17499 * sysdeps/posix/pwritev_common.c: Add PROT_READ to __mmap prot.
17500
17501 2018-01-05 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17502
17503 * sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
17504 Reserve 16 chars to reloc_addr before calling _itoa_word.
17505
17506 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17507
17508 [BZ #22678]
17509 * sysdeps/unix/sysv/linux/prlimit.c (prlimit): Translate
17510 old_rlimit from RLIM64_INFINITY to RLIM_INFINITY.
17511
17512 * sysdeps/unix/sysv/linux/tst-rlimit-infinity.c: New file.
17513 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-rlimit-infinity.
17514
17515 * resource/tst-getrlimit.c: Add copyright header.
17516
17517 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17518 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17519
17520 * sysdeps/unix/sysv/linux/getrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
17521 define getrlimit and getrlimit64 as weak aliases of __getrlimit64.
17522 Define __GI_getrlimit64 as weak alias of __getrlimit64.
17523 [__RLIM_T_MATCHES_RLIM64_T]: Do not redefine SHLIB_COMPAT, use #elif
17524 instead.
17525 * sysdeps/unix/sysv/linux/setrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
17526 define setrlimit and setrlimit64 as weak aliases of __setrlimit64.
17527 * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIM_INFINITY,
17528 RLIM64_INFINITY): Fix values to match the kernel ones.
17529 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Define
17530 USE_VERSIONED_RLIMIT. Rename __getrlimit64 into __old_getrlimit64 and
17531 provide it as getrlimit@@GLIBC_2_0 and getrlimit64@@GLIBC_2_1. Add a
17532 __getrlimit64 function and provide it as getrlimit@@GLIBC_2_27 and
17533 getrlimit64@@GLIBC_2_27.
17534 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto with setrlimit
17535 and setrlimit64.
17536 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.27): Add
17537 getrlimit, setrlimit, getrlimit64 and setrlimit64.
17538 * sysdeps/unix/sysv/linux/alpha/Versions (libc): Add getrlimit,
17539 setrlimit, getrlimit64 and setrlimit64.
17540
17541 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17542
17543 [BZ #22648]
17544 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: New file.
17545 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto.
17546
17547 2018-01-04 Joseph Myers <joseph@codesourcery.com>
17548
17549 * malloc/tst-malloc-tcache-leak.c (TIMEOUT): Define to 50.
17550 * posix/tst-glob-tilde.c (TIMEOUT): Define to 200.
17551 * resolv/tst-resolv-res_ninit.c (TIMEOUT): Define to 50.
17552
17553 2018-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17554
17555 [BZ #15479]
17556 [BZ #22666]
17557 * sysdeps/alpha/fpu/s_trunc.c: Remove file.
17558 * sysdeps/alpha/fpu/s_truncf.c: Likewise.
17559
17560 [BZ #15479]
17561 [BZ #22665]
17562 * sysdeps/alpha/fpu/s_ceil.c: Remove file.
17563 * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
17564 * sysdeps/alpha/fpu/s_floor.c: Likewise.
17565 * sysdeps/alpha/fpu/s_floorf.c: Likewise.
17566
17567 2018-01-04 Florian Weimer <fweimer@redhat.com>
17568
17569 [BZ #22667]
17570 * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext):
17571 Align the stack before calling exit.
17572 * stdlib/tst-makecontext-align.c: New file.
17573 * stdlib/Makefile (tests): Add tst-makecontext-align.
17574
17575 2018-01-04 Florian Weimer <fweimer@redhat.com>
17576
17577 Add support for calling dlvsym from libc.so.
17578 * include/dlfcn.h (__libc_dlvsym): Declare.
17579 * elf/Makefile (tests-static-internal): Add
17580 tst-libc_dlvsym-static.
17581 (tests-internal): Add tst-libc_dlvsym.
17582 (modules-names): Add tst-libc_dlvsym-dso.
17583 (tst-libc_dlvsym, tst-libc_dlvsym-static): Link with libdl.
17584 (tst-libc_dlvsym-dso.so): Link with libdl, libsupport.
17585 (tst-libc_dlvsym.out, tst-libc_dlvsym-static.out): The shared
17586 object tst-libc_dlvsym-dso.so needs to be built before running
17587 these tests.
17588 (tst-libc_dlvsym-static-ENV): Set LD_LIBRARY_PATH.
17589 * elf/Versions: Export __libc_dlvsym.
17590 * elf/dl-libc.c (struct do_dlvsym_args): New.
17591 (do_dlvsym, __libc_dlvsym): New functions.
17592 (struct dl_open_hook, _dl_open_hook): Add dlvsym member.
17593 (_dl_open_hook2): New variable.
17594 (__libc_register_dl_open_hook): Set it.
17595 * elf/tst-libc_dlvsym-dso.c: New file.
17596 * elf/tst-libc_dlvsym-static.c: Likewise.
17597 * elf/tst-libc_dlvsym.c: Likewise.
17598 * elf/tst-libc_dlvsym.h: Likewise.
17599
17600 2018-01-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
17601
17602 * support/support_enter_mount_namespace.c [!CLONE_NEWNS]: Do not
17603 include <sys/mount.h>.
17604
17605 2018-01-02 Wilco Dijkstra <wdijkstr@arm.com>
17606
17607 * math/math.h (math_errhandling): Set to 0 with __FAST_MATH__.
17608 Add __NO_MATH_ERRNO__ check.
17609
17610 2018-01-02 Joseph Myers <joseph@codesourcery.com>
17611
17612 * sysdeps/mips/mips32/libm-test-ulps: Update.
17613 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
17614
17615 2018-01-02 Florian Weimer <fweimer@redhat.com>
17616
17617 * misc/tst-pselect.c: Add copyright header.
17618
17619 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
17620
17621 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
17622 comment.
17623 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
17624 comment.
17625 (settrlimit): Rename into setrlimit.
17626 (__sttrlimit): Rename into __setrlimit.
17627
17628 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c (__old_getrlimit64):
17629 Drop __RLIM_T_MATCHES_RLIM64_T conditional as __old_getrlimit64 is
17630 never defined in that case.
17631
17632 2018-01-02 Joseph Myers <joseph@codesourcery.com>
17633
17634 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
17635
17636 * sysdeps/arm/libm-test-ulps: Update.
17637
17638 * math/Makefile (run-regen-ulps): Add $(objpfx) to test name here.
17639 (regen-ulps): Use $(libm-tests) not $^ in shell loop.
17640
17641 2018-01-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17642
17643 * NEWS: Add cosf and sincosf to list of optimized functions.
17644
17645 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
17646
17647 [BZ #22660]
17648 * sysdeps/alpha/fpu/s_fmax.S: Remove file.
17649 * sysdeps/alpha/fpu/s_fmaxf.S: Likewise.
17650 * sysdeps/alpha/fpu/s_fmin.S: Likewise.
17651 * sysdeps/alpha/fpu/s_fminf.S: Likewise.
17652
17653 2018-01-01 Dmitry V. Levin <ldv@altlinux.org>
17654
17655 [BZ #22433]
17656 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h: New file.
17657
17658 * elf/dl-load.c (decompose_rpath): Check for rpath emptiness before
17659 making a copy of it.
17660
17661 2018-01-01 Joseph Myers <joseph@codesourcery.com>
17662
17663 * manual/texinfo.tex: Update to version 2017-12-26.21 with
17664 trailing whitespace removed.
17665 * scripts/config.guess: Update to version 2018-01-01.
17666 * scripts/config.sub: Update to version 2018-01-01.
17667 * scripts/move-if-change: Update from gnulib.
17668
17669 * NEWS: Update copyright dates.
17670 * catgets/gencat.c (print_version): Likewise.
17671 * csu/version.c (banner): Likewise.
17672 * debug/catchsegv.sh: Likewise.
17673 * debug/pcprofiledump.c (print_version): Likewise.
17674 * debug/xtrace.sh (do_version): Likewise.
17675 * elf/ldconfig.c (print_version): Likewise.
17676 * elf/ldd.bash.in: Likewise.
17677 * elf/pldd.c (print_version): Likewise.
17678 * elf/sotruss.sh: Likewise.
17679 * elf/sprof.c (print_version): Likewise.
17680 * iconv/iconv_prog.c (print_version): Likewise.
17681 * iconv/iconvconfig.c (print_version): Likewise.
17682 * locale/programs/locale.c (print_version): Likewise.
17683 * locale/programs/localedef.c (print_version): Likewise.
17684 * login/programs/pt_chown.c (print_version): Likewise.
17685 * malloc/memusage.sh (do_version): Likewise.
17686 * malloc/memusagestat.c (print_version): Likewise.
17687 * malloc/mtrace.pl: Likewise.
17688 * manual/libc.texinfo: Likewise.
17689 * nptl/version.c (banner): Likewise.
17690 * nscd/nscd.c (print_version): Likewise.
17691 * nss/getent.c (print_version): Likewise.
17692 * nss/makedb.c (print_version): Likewise.
17693 * posix/getconf.c (main): Likewise.
17694 * scripts/test-installation.pl: Likewise.
17695 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
17696
17697 * All files with FSF copyright notices: Update copyright dates
17698 using scripts/update-copyrights.
17699 * locale/programs/charmap-kw.h: Regenerated.
17700 * locale/programs/locfile-kw.h: Likewise.
17701
17702 2017-12-31 Zack Weinberg <zackw@panix.com>
17703
17704 * libio/bits/libio-ldbl.h: Correct check for improper
17705 inclusion. Add own multiple include guard.
17706
17707 2017-12-30 Aurelien Jarno <aurelien@aurel32.net>
17708 Dmitry V. Levin <ldv@altlinux.org>
17709
17710 [BZ #22625]
17711 CVE-2017-16997
17712 * elf/dl-load.c (fillin_rpath): Check for empty tokens before dynamic
17713 string token expansion. Check for NULL pointer or empty string possibly
17714 returned by expand_dynamic_string_token.
17715 (decompose_rpath): Check for empty path after dynamic string
17716 token expansion.
17717
17718 2017-12-29 Dmitry V. Levin <ldv@altlinux.org>
17719
17720 [BZ #22433]
17721 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h: New file.
17722
17723 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_request): Add comments
17724 about PTRACE_PEEKSIGINFO, PTRACE_GETSIGMASK, PTRACE_SETSIGMASK, and
17725 PTRACE_SECCOMP_GET_FILTER. Update comments about PTRACE_SINGLESTEP
17726 and PTRACE_SYSCALL.
17727 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
17728 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
17729 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
17730 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
17731 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
17732 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
17733
17734 * sysdeps/unix/sysv/linux/sys/ptrace.h: Include <bits/ptrace-shared.h>.
17735 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
17736 __ptrace_peeksiginfo_flags, ptrace): Move to ...
17737 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h: ... new file.
17738 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
17739 bits/ptrace-shared.h.
17740 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Include
17741 <bits/ptrace-shared.h>.
17742 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
17743 __ptrace_peeksiginfo_flags, ptrace): Remove.
17744 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
17745 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
17746 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
17747 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
17748 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
17749
17750 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
17751
17752 [BZ #17804]
17753 * dirent/scandir-tail.c (SCANDIR_TAIL): Move __set_errno (0) at the
17754 end of the loop. Improve comments.
17755
17756 2017-12-29 Zack Weinberg <zackw@panix.com>
17757
17758 [BZ #22615]
17759 * manual/errno.texi (Checking for Errors): Explicitly say that errno
17760 might be set on success.
17761
17762 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
17763
17764 [BZ #22611]
17765 * malloc/tst-realloc.c (do_test): Remove the test checking that errno
17766 is unchanged on success.
17767
17768 2017-12-27 Dmitry V. Levin <ldv@altlinux.org>
17769
17770 * elf/dl-dst.h (DL_DST_COUNT): Remove is_path argument, all callers
17771 updated.
17772 * elf/dl-load.c (is_dst, _dl_dst_count, _dl_dst_substitute,
17773 expand_dynamic_string_token): Likewise.
17774 * sysdeps/generic/ldsodefs.h (_dl_dst_count, _dl_dst_substitute): Remove
17775 is_path argument.
17776
17777 * elf/dl-load.c (is_dst): Remove checks that is_path is set and name
17778 contains ':'.
17779
17780 * elf/dl-load.c (_dl_dst_substitute): Remove checks that is_path
17781 is set and name contains ':', and all code depending on these checks.
17782
17783 2017-12-24 Zack Weinberg <zackw@panix.com>
17784
17785 * libio/libio.h, libio/_G_config.h: New stub headers which issue a
17786 deprecation warning and then include <bits/libio.h>, <bits/_G_config.h>
17787 respectively.
17788 * libio/libio.h: Rename the original version of this file to
17789 libio/bits/libio.h. Error out if not included by stdio.h or the
17790 stub libio.h.
17791 * include/libio.h: Move to include/bits. Forward to libio/bits/libio.h.
17792 * sysdeps/generic/_G_config.h: Move to top-level bits/. Error out
17793 if not included by bits/libio.h or the stub _G_config.h.
17794 * sysdeps/unix/sysv/linux/_G_config.h: Move to
17795 sysdeps/unix/sysv/linux/bits. Error out if not included by
17796 bits/libio.h or the stub _G_config.h.
17797 * libio/stdio.h: Include bits/libio.h, not libio.h.
17798 * libio/Makefile: Install bits/libio.h and bits/_G_config.h as
17799 well as libio.h and _G_config.h.
17800
17801 * csu/init.c, libio/fmemopen.c, libio/iolibio.h, libio/oldfmemopen.c
17802 * libio/strfile.h, stdio-common/vfscanf.c
17803 * sysdeps/pthread/flockfile.c, sysdeps/pthread/funlockfile.c
17804 Include stdio.h, not _G_config.h nor libio.h.
17805 * libio/iofgetpos.c: Also rename fgetpos64 out of the way.
17806 * libio/iofsetpos.c: Also rename fsetpos64 out of the way.
17807
17808 * scripts/check-installed-headers.sh: Skip libio.h and _G_config.h.
17809
17810 2017-12-23 Dmitry V. Levin <ldv@altlinux.org>
17811
17812 [BZ #22347]
17813 * stdlib/getrandom.c (getrandom): Fix comment.
17814 * sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
17815
17816 2017-12-23 Aurelien Jarno <aurelien@aurel32.net>
17817
17818 [BZ #21161]
17819 * manual/arith.texi (strtoul): Fix a typo.
17820
17821 [BZ #22596]
17822 * manual/arith.texi (finite): Fix the description of the return
17823 value.
17824
17825 2017-12-22 Eric Blake <ebb9@byu.net>
17826
17827 Avoid gcc warnings on cygwin
17828 * posix/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
17829 * posix/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
17830 Avoid unused variable.
17831
17832 2017-12-22 Florian Weimer <fweimer@redhat.com>
17833
17834 * io/Makefile (routines): Add copy_file_range.
17835 (tests): Add tst-copy_file_range.
17836 (tests-static, tests-internal): Add tst-copy_file_range-compat.
17837 * io/Versions (GLIBC_2.27): Export copy_file_range.
17838 * io/copy_file_range-compat.c: New file.
17839 * io/copy_file_range.c: Likewise.
17840 * io/tst-copy_file_range-compat.c: Likewise.
17841 * io/tst-copy_file_range.c: Likewise.
17842 * manual/llio.texi (Copying File Data): New section.
17843 * posix/unistd.h [__USE_GNU] (copy_file_range): Declare.
17844 * support/Makefile (libsupport-routines): Add support-xfstat,
17845 xftruncate, xlseek.
17846 * support/support-xfstat.c: New file.
17847 * support/xftruncate.c: Likewise.
17848 * support/xlseek.c: Likewise.
17849 * support/xunistd.h (xfstat, xftruncate, xlseek): Declare.
17850 * sysdeps/unix/sysv/linux/**.abilist: Update.
17851 * sysdeps/unix/sysv/linux/copy_file_range.c: New file.
17852
17853 2017-12-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
17854
17855 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
17856 disable-multi-arch variant to aarch64-linux-gnu.
17857
17858 2017-12-20 Joseph Myers <joseph@codesourcery.com>
17859
17860 * manual/texinfo.tex: Update to version 2017-12-18.20 with
17861 trailing whitespace removed.
17862 * scripts/config.guess: Update to version 2017-12-17.
17863 * scripts/config.sub: Update to version 2017-11-23.
17864 * scripts/install-sh: Update to version 2017-09-23.17.
17865 * scripts/move-if-change: Update to version 2017-09-13 06:45.
17866
17867 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17868
17869 * sysdeps/tile/__longjmp.S (__longjmp): Use lowercase instructions.
17870 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
17871 * sysdeps/tile/_mcount.S (__mcount): Likewise.
17872 * sysdeps/tile/crti.S (_init, _fini): Likewise.
17873 * sysdeps/tile/crtn.S: Likewise.
17874 * sysdeps/tile/dl-start.S (_start): Likewise.
17875 * sysdeps/tile/dl-trampoline.S: Likewise.
17876 * sysdeps/tile/setjmp.S (__sigsetjmp): Likewise.
17877 * sysdeps/tile/start.S (_start): Likewise.
17878 * sysdeps/unix/sysv/linux/tile/clone.S (_clone): Likewise.
17879 * sysdeps/unix/sysv/linux/tile/getcontext.S (__getcontext): Likewise.
17880 * sysdeps/unix/sysv/linux/tile/ioctl.S (__ioctl): Likewise.
17881 * sysdeps/unix/sysv/linux/tile/setcontext.S (__setcontext): Likewise.
17882 * sysdeps/unix/sysv/linux/tile/swapcontext.S (__swapcontext): Likewise.
17883 * sysdeps/unix/sysv/linux/tile/syscall.S (syscall): Likewise.
17884 * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Likewise.
17885
17886 * stdlib/bug-getcontext.c (do_test): Remove tilepro mention in
17887 comment.
17888 * sysdeps/tile/preconfigure: Remove tilegx folder.
17889 * sysdeps/tile/tilegx/Implies: Move definitions to ...
17890 * sysdeps/tile/Implies: ... here.
17891 * sysdeps/tile/tilegx/Makefile: Move rules to ...
17892 * sysdeps/tile/Makefile: ... here.
17893 * sysdeps/tile/tilegx/atomic-machine.h: Move definitions to ...
17894 * sysdeps/tile/atomic-machine.h: ... here. Add include guards.
17895 * sysdeps/tile/tilegx/bits/wordsize.h: Move to ...
17896 * sysdeps/tile/bits/wordsize.h: ... here.
17897 * sysdeps/tile/tilegx/*: Move to ...
17898 * sysdeps/tile/*: ... here.
17899 * sysdeps/tile/tilegx/tilegx32/Implies: Move to ...
17900 * sysdeps/tile/tilegx32/Implies: ... here.
17901 * sysdeps/tile/tilegx/tilegx64/Implies: Move to ...
17902 * sysdeps/tile/tilegx64/Implies: ... here.
17903 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Move definitions
17904 to ...
17905 * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
17906 * sysdeps/unix/sysv/linux/tile/tilegx/*: Move to ...
17907 * sysdeps/unix/sysv/linux/tile/*: ... here.
17908 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/*: Move to ...
17909 * sysdeps/unix/sysv/linux/tile/tilegx32/*: ... here.
17910 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/*: Move to ...
17911 * sysdeps/unix/sysv/linux/tile/tilegx64/*: ... here.
17912
17913 * README: Remove tilepro-*-linux-gnu from supported architecture.
17914 * scripts/build-many-glibcs.py: Likewise.
17915 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
17916 * sysdeps/tile/crti.S (PREINIT_FUNCTION): Likewise.
17917 * sysdeps/tile/dl-machine.h (ELF_MACHINE_NAME,
17918 elf_machine_matches_host, elf_machine_dynamic,
17919 elf_machine_load_address, elf_machine_runtime_setup, reloc_howto
17920 howto, elf_machine_rela): Likewise.
17921 * sysdeps/tile/dl-start.S (_start): Likewise.
17922 * sysdeps/tile/memcmp.c (DBLALIGN, REVBYTES): Likewise.
17923 * sysdeps/tile/memcopy.h (MEMCPY_OK_FOR_FWD_MEMMOVE,
17924 MEMCPY_OK_FOR_FWD_MEMMOVE, op_t): Likewise.
17925 * sysdeps/tile/nptl/pthread_spin_lock.c (TNS, CMPTNS): Likewise.
17926 * sysdeps/tile/nptl/pthread_spin_trylock.c (TNS): Likewise.
17927 * sysdeps/tile/nptl/pthread_spin_unlock.c (pthread_spin_unlock):
17928 Likewise.
17929 * sysdeps/tile/nptl/tls.h (DB_THREAD_SELF): Likewise.
17930 * sysdeps/tile/preconfigure: Likewise.
17931 * sysdeps/tile/stackguard-macros.h (STACK_CHK_GUARD,
17932 POINTER_CHK_GUARD): Likewise.
17933 * sysdeps/tile/stackinfo.h (__stackinfo_sub): Likewise.
17934 * sysdeps/tile/start.S (_start): Likewise.
17935 * sysdeps/tile/tls-macros.h (TLS_GD_OFFSET, TLS_IE_OFFSET, _TLS_LE):
17936 Likewise.
17937 * sysdeps/tile/sysdep.h (REGSIZE): Likewise.
17938 (LD, LD4U, ST, ST4, BNEZ, BEQZ, BEQZT, BGTZ, CMPEQI, CMPEQ, CMOVEQZ,
17939 CMOVNEZ): Remove.
17940 * sysdeps/unix/sysv/linux/tile/bits/environments.h
17941 (__ILP32_OFF32_CFLAGS, __ILP32_OFFBIG_CFLAGS, __ILP32_OFF32_LDFLAGS,
17942 __ILP32_OFFBIG_LDFLAGS, __LP64_OFF64_CFLAGS, __LP64_OFF64_LDFLAGS):
17943 Likewise.
17944 * sysdeps/tile/wordcopy.c (DBLALIGN): Likewise.
17945 * sysdeps/tile/tilepro/Implies: Remove file.
17946 * sysdeps/tile/tilepro/atomic-machine.h: Likewise.
17947 * sysdeps/tile/tilepro/bits/wordsize.h: Likewise.
17948 * sysdeps/tile/tilepro/memchr.c: Likewise.
17949 * sysdeps/tile/tilepro/memcpy.S: Likewise.
17950 * sysdeps/tile/tilepro/memset.c: Likewise.
17951 * sysdeps/tile/tilepro/memusage.h: Likewise.
17952 * sysdeps/tile/tilepro/rawmemchr.c: Likewise.
17953 * sysdeps/tile/tilepro/strchr.c: Likewise.
17954 * sysdeps/tile/tilepro/strchrnul.c: Likewise.
17955 * sysdeps/tile/tilepro/strlen.c: Likewise.
17956 * sysdeps/tile/tilepro/strrchr.c: Likewise.
17957 * sysdeps/unix/sysv/linux/tile/tilepro/Implies: Likewise.
17958 * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: Likewise.
17959 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
17960 * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: Likewise.
17961 * sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h: Likewise.
17962 * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
17963 Likewise.
17964 * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: Likewise.
17965 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
17966 * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: Likewise.
17967 * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: Likewise.
17968 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
17969 * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: Likewise.
17970 * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: Likewise.
17971 * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: Likewise.
17972 * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: Likewise.
17973 * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: Likewise.
17974 * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: Likewise.
17975 * sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h: Likewise.
17976 * sysdeps/unix/sysv/linux/tile/sysconf.c (linux_sysconf): Remove
17977 tilepro mention in comment.
17978
17979 * nptl/Makefile (libpthread-routines): Add pthread_join_common.
17980 * nptl/pthreadP.h (__pthread_timedjoin_ex): New prototype.
17981 * nptl/pthread_join_common.c: New file: common function used on
17982 pthread_join, pthread_timedjoin_np, pthread_tryjoin_np.
17983 * nptl/pthread_join.c (pthread_join): Use __pthread_timedjoin_ex.
17984 * nptl/pthread_tryjoin.c (pthread_tryjoin): Likewise.
17985 * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
17986 (cleanup): Move definition to pthread_join_common.c.
17987 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (__lll_timedwait_tid):
17988 Remove superflous checks.
17989 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (__lll_timedwait_tid):
17990 Likewise.
17991
17992 2017-12-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
17993
17994 * sysdeps/aarch64/libm-test-ulps: Update.
17995
17996 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17997
17998 * sysdeps/aarch64/memset.S (MEMSET): Define.
17999
18000 2017-12-20 Florian Weimer <fweimer@redhat.com>
18001
18002 [BZ #22635]
18003 nptl: Provide full implementation of pthread_self in libc.so.
18004 * nptl/Makefile (routines): Add pthread_self.
18005 (libpthread-routines): Replace pthread_self with
18006 compat-pthread_self.
18007 * nptl/forward.c (pthread_self): Remove.
18008 * nptl/nptl-init.c (pthread_functions): Do not initialize
18009 ptr_pthread_self.
18010 * nptl/pthread_self.c (pthread_self): Remove weak alias.
18011 * nptl/compat-pthread_self.c: New file.
18012 * sysdeps/nptl/pthread-functions.h (struct pthread_functions):
18013 Remove ptr_pthread_self.
18014
18015 2017-12-19 Arnold D. Robbins <arnold@skeeve.com>
18016
18017 * posix/regcomp.c: Fix spelling in comments.
18018 * posix/regex.h: Likewise.
18019 * posix/regex_internal.c: Likewise.
18020 * posix/regexec.c: Likewise.
18021
18022 2017-12-19 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
18023
18024 [BZ #22377]
18025 * math/Makefile [C++] (tests): Add test for iseqsig.
18026 * math/math.h [C++] (iseqsig): New implementation, which does
18027 not rely on __MATH_TG/__builtin_types_compatible_p.
18028 * math/test-math-iseqsig.cc: New file.
18029 * sysdeps/powerpc/powerpc64le/Makefile
18030 (CFLAGS-test-math-iseqsig.cc): New variable.
18031
18032 2017-12-19 Dmitry V. Levin <ldv@altlinux.org>
18033
18034 * elf/dl-load.c (is_trusted_path): Remove.
18035 (fillin_rpath): Remove check_trusted argument and its use,
18036 all callers changed.
18037
18038 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18039
18040 [BZ #22630]
18041 * Makeconfig (link-pie-before-libc): Replace -pie with
18042 $(if $($(@F)-no-pie),$(no-pie-ldflag),-pie).
18043 * elf/Makefile (LDFLAGS-tst-dlopen-aout): Removed.
18044 (tst-dlopen-aout-no-pie): New.
18045 (LDFLAGS-tst-prelink): Removed.
18046 (tst-prelink-no-pie): New.
18047 (LDFLAGS-tst-main1): Removed.
18048 (tst-main1-no-pie): New.
18049 * gmon/Makefile (LDFLAGS-tst-gmon): Removed.
18050 (tst-gmon-no-pie): New.
18051
18052 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18053
18054 * manual/install.texi: Document that --enable-static-pie
18055 implies PIE.
18056 * INSTALL: Regenerated.
18057
18058 2017-12-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
18059
18060 [BZ #21309]
18061 * sysdeps/ieee754/dbl-64/e_pow.c (checkint): Make m and n
18062 unsigned.
18063
18064 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18065
18066 Revert:
18067
18068 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18069
18070 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
18071
18072 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18073
18074 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
18075 <errno.h>. Include "eexp.tbl".
18076 (half): New constant.
18077 (one): Likewise.
18078 (__ieee754_exp): Rewrite.
18079 (__slowexp): Remove prototype.
18080 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
18081 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
18082 * sysdeps/i386/fpu/slowexp.c: Likewise.
18083 * sysdeps/ia64/fpu/slowexp.c: Likewise.
18084 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
18085 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
18086 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
18087 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
18088 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
18089 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
18090 comment.
18091 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
18092 (CPPFLAGS-slowexp.c): Remove variable.
18093 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18094 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
18095 (CFLAGS-slowexp-fma.c): Remove variable.
18096 (CFLAGS-slowexp-fma4.c): Likewise.
18097 (CFLAGS-slowexp-avx.c): Likewise.
18098 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
18099 define as macro.
18100 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
18101 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
18102 * math/Makefile (type-double-routines): Remove slowexp.
18103 * manual/probes.texi (slowexp_p6): Remove.
18104 (slowexp_p32): Likewise.
18105
18106 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18107
18108 * lib/glob.c (glob): Use a 'char *', not a 'void *', in pointer
18109 arithmetic.
18110
18111 * lib/glob.c (glob): Do not pass NULL to mempcpy.
18112
18113 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18114
18115 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
18116
18117 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18118
18119 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
18120 <errno.h>. Include "eexp.tbl".
18121 (half): New constant.
18122 (one): Likewise.
18123 (__ieee754_exp): Rewrite.
18124 (__slowexp): Remove prototype.
18125 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
18126 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
18127 * sysdeps/i386/fpu/slowexp.c: Likewise.
18128 * sysdeps/ia64/fpu/slowexp.c: Likewise.
18129 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
18130 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
18131 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
18132 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
18133 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
18134 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
18135 comment.
18136 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
18137 (CPPFLAGS-slowexp.c): Remove variable.
18138 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18139 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
18140 (CFLAGS-slowexp-fma.c): Remove variable.
18141 (CFLAGS-slowexp-fma4.c): Likewise.
18142 (CFLAGS-slowexp-avx.c): Likewise.
18143 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
18144 define as macro.
18145 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
18146 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
18147 * math/Makefile (type-double-routines): Remove slowexp.
18148 * manual/probes.texi (slowexp_p6): Remove.
18149 (slowexp_p32): Likewise.
18150
18151 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18152 James Clarke <jrtc27@jrtc27.com>
18153
18154 [BZ #22603]
18155 * sysdeps/ia64/memchr.S (__memchr): Avoid overflow in pointer
18156 addition.
18157
18158 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18159
18160 [BZ #22605]
18161 * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Fix exit return
18162 code.
18163
18164 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18165
18166 [BZ #22563]
18167 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
18168 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
18169 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
18170 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
18171 to feature_1.
18172
18173 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18174
18175 [BZ #22563]
18176 * bits/types/__cancel_jmp_buf_tag.h: New file.
18177 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
18178 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
18179 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
18180 * nptl/Makefile (headers): Add
18181 bits/types/__cancel_jmp_buf_tag.h.
18182 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
18183 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
18184 * sysdeps/nptl/pthread.h: Include
18185 <bits/types/__cancel_jmp_buf_tag.h>.
18186 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
18187 __cancel_jmp_buf.
18188 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
18189
18190 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
18191
18192 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
18193 --enable-static-pie variants to x86_64, x32 and i686.
18194
18195 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18196
18197 [BZ #22631]
18198 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__m81_defun): Add
18199 argument for attrubutes. All callers changed.
18200 (__inline_mathop1): Likewise. All callers changed.
18201 (__inline_mathop): Likewise. All callers changed.
18202 [__USE_MISC] (scalbn): Use __inline_forward instead of
18203 __inline_forward_c.
18204 [__USE_ISOC99] (scalbln): Likewise.
18205 [__USE_ISOC99] (nearbyint): Likewise.
18206 [__USE_ISOC99] (lrint): Likewise.
18207 [__USE_MISC] (scalbnf): Likewise.
18208 [__USE_ISOC99] (scalblnf): Likewise.
18209 [__USE_ISOC99] (nearbyintf): Likewise.
18210 [__USE_ISOC99] (lrintf): Likewise.
18211 [__USE_MISC] (scalbnl): Likewise.
18212 [__USE_ISOC99] (scalblnl): Likewise.
18213 [__USE_ISOC99] (nearbyintl): Likewise.
18214 [__USE_ISOC99] (lrintl): Likewise.
18215 * sysdeps/m68k/m680x0/fpu/mathimpl.h: All callers of
18216 __inline_mathop and __m81_defun changed.
18217
18218 * scripts/build-many-glibcs.py (Context.add_all_configs): Specify
18219 CPU or FPU for ARM hard-float configurations.
18220
18221 2017-12-18 Joseph Myers <joseph@codesourcery.com>
18222
18223 * nptl/tst-attr3.c: Include <libc-diag.h>.
18224 (do_test) [__GNUC_PREREQ (7, 0)]: Ignore -Wrestrict for two tests.
18225
18226 * posix/tst-glob_symlinks.c (do_test): Increase size of buf.
18227
18228 * string/tester.c (test_strncat): Also disable -Warray-bounds
18229 warnings for two tests.
18230
18231 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
18232
18233 [BZ #22614]
18234 * Makeconfig (no-pie-ldflag): Set to -no-pie only if
18235 $(cc-pie-default) == yes.
18236 * config.make.in (cc-pie-default): New.
18237 * configure.ac (libc_cv_pie_default): Renamed to ...
18238 (libc_cv_cc_pie_default): This.
18239 (libc_cv_pie_default): Set to $libc_cv_cc_pie_default.
18240 * configure: Regenerated.
18241
18242 2017-12-18 Florian Weimer <fweimer@redhat.com>
18243
18244 [BZ #20204]
18245 ld.so: Harden dl-libc/libdl hooks.
18246 * sysdeps/generic/ldsodefs.h (_dl_init_all_dirs): Update comment.
18247 (rtld_active): New function.
18248 * dlfcn/dladdr.c (__dladdr): Call it.
18249 * dlfcn/dladdr1.c (__dladdr1): Likewise.
18250 * dlfcn/dlclose.c (__dlcose): Likewise.
18251 * dlfcn/dlerror.c (__dlerror): Likewise.
18252 * dlfcn/dlinfo.c (__dlinfo): Likewise.
18253 * dlfcn/dlmopen.c (__dlmopen): Likewise.
18254 * dlfcn/dlopen.c (__dlopen): Likewise.
18255 * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
18256 * dlfcn/dlsym.c (__dlsym): Likewise.
18257 * dlfcn/dlvsym.c (__dlvsym): Likewise.
18258 * libio/vtables.c (_IO_vtable_check): Likewise.
18259 * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym)
18260 (__libc_dlclose): Likewise.
18261 * elf/rtld.c (dl_main): Update comment on the _dl_init_all_dirs
18262 assignment.
18263
18264 2017-12-18 Joseph Myers <joseph@codesourcery.com>
18265
18266 [BZ #22446]
18267 * nscd/connections.c (handle_request) [SO_PEERCRED]: Use separate
18268 buffers for readlink input and output.
18269
18270 2017-12-18 Sergei Trofimovich <slyfox@gentoo.org>
18271
18272 [BZ #22624]
18273 * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Use
18274 inhibit_stack_protector.
18275
18276 [BZ #22624]
18277 * sysdeps/mips/mips64/setjmp_aux.c (__sigsetjmp_aux): Use
18278 inhibit_stack_protector.
18279
18280 2017-12-18 Dmitry V. Levin <ldv@altlinux.org>
18281
18282 [BZ #22627]
18283 * elf/dl-load.c (_dl_init_paths): Remove _dl_dst_substitute preparatory
18284 code and invocation.
18285
18286 2017-12-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
18287
18288 * sysdeps/aarch64/start.S (_start): Handle PIC && !SHARED case.
18289
18290 2017-12-16 Aurelien Jarno <aurelien@aurel32.net>
18291
18292 [BZ #22505]
18293 * elf/ldconfig.c (main): Call setlocale to force LC_COLLATE to C.
18294
18295 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18296
18297 * sysdeps/s390/fpu/libm-test-ulps: Update.
18298
18299 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18300
18301 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18302
18303 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18304
18305 * sysdeps/ieee754/flt-32/s_cosf.c: Move reduced() and
18306 constants to s_sincosf.h file.
18307 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
18308 * sysdeps/ieee754/flt-32/s_sincosf.c: New
18309 implementation.
18310 * sysdeps/ieee754/flt-32/s_sincosf.h:
18311 New file.
18312
18313 2017-12-12 Carlos O'Donell <carlos@redhat.com>
18314
18315 [BZ #14681]
18316 * elf/tst-leaks1.c (do_test): Call one dlopen with $ORIGIN expansion
18317 before mtrace.
18318
18319 2017-12-15 H.J. Lu <hongjiu.lu@intel.com>
18320
18321 [BZ #19574]
18322 * INSTALL: Regenerated.
18323 * Makeconfig (real-static-start-installed-name): New.
18324 (pic-default): Updated for --enable-static-pie.
18325 (pie-default): New for --enable-static-pie.
18326 (default-pie-ldflag): Likewise.
18327 (+link-static-before-libc): Replace $(DEFAULT-LDFLAGS-$(@F))
18328 with $(if $($(@F)-no-pie),$(no-pie-ldflag),$(default-pie-ldflag)).
18329 Replace $(static-start-installed-name) with
18330 $(real-static-start-installed-name).
18331 (+prectorT): Updated for --enable-static-pie.
18332 (+postctorT): Likewise.
18333 (CFLAGS-.o): Add $(pie-default).
18334 (CFLAGS-.op): Likewise.
18335 * NEWS: Mention --enable-static-pie.
18336 * config.h.in (ENABLE_STATIC_PIE): New.
18337 * configure.ac (--enable-static-pie): New configure option.
18338 (have-no-dynamic-linker): New LIBC_CONFIG_VAR.
18339 (have-static-pie): Likewise.
18340 Enable static PIE if linker supports --no-dynamic-linker.
18341 (ENABLE_STATIC_PIE): New AC_DEFINE.
18342 (enable-static-pie): New LIBC_CONFIG_VAR.
18343 * configure: Regenerated.
18344 * csu/Makefile (omit-deps): Add r$(start-installed-name) and
18345 gr$(start-installed-name) for --enable-static-pie.
18346 (extra-objs): Likewise.
18347 (install-lib): Likewise.
18348 (extra-objs): Add static-reloc.o and static-reloc.os
18349 ($(objpfx)$(start-installed-name)): Also depend on
18350 $(objpfx)static-reloc.o.
18351 ($(objpfx)r$(start-installed-name)): New.
18352 ($(objpfx)g$(start-installed-name)): Also depend on
18353 $(objpfx)static-reloc.os.
18354 ($(objpfx)gr$(start-installed-name)): New.
18355 * csu/libc-start.c (LIBC_START_MAIN): Call _dl_relocate_static_pie
18356 in libc.a.
18357 * csu/libc-tls.c (__libc_setup_tls): Add main_map->l_addr to
18358 initimage.
18359 * csu/static-reloc.c: New file.
18360 * elf/Makefile (routines): Add dl-reloc-static-pie.
18361 (elide-routines.os): Likewise.
18362 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): Removed.
18363 (tst-tls1-static-non-pie-no-pie): New.
18364 * elf/dl-reloc-static-pie.c: New file.
18365 * elf/dl-support.c (_dl_get_dl_main_map): New function.
18366 * elf/dynamic-link.h (ELF_DURING_STARTUP): Also check
18367 STATIC_PIE_BOOTSTRAP.
18368 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
18369 * gmon/Makefile (tests): Add tst-gmon-static-pie.
18370 (tests-static): Likewise.
18371 (DEFAULT-LDFLAGS-tst-gmon-static): Removed.
18372 (tst-gmon-static-no-pie): New.
18373 (CFLAGS-tst-gmon-static-pie.c): Likewise.
18374 (CRT-tst-gmon-static-pie): Likewise.
18375 (tst-gmon-static-pie-ENV): Likewise.
18376 (tests-special): Likewise.
18377 ($(objpfx)tst-gmon-static-pie.out): Likewise.
18378 (clean-tst-gmon-static-pie-data): Likewise.
18379 ($(objpfx)tst-gmon-static-pie-gprof.out): Likewise.
18380 * gmon/tst-gmon-static-pie.c: New file.
18381 * manual/install.texi: Document --enable-static-pie.
18382 * sysdeps/generic/ldsodefs.h (_dl_relocate_static_pie): New.
18383 (_dl_get_dl_main_map): Likewise.
18384 * sysdeps/i386/configure.ac: Check if linker supports static PIE.
18385 * sysdeps/x86_64/configure.ac: Likewise.
18386 * sysdeps/i386/configure: Regenerated.
18387 * sysdeps/x86_64/configure: Likewise.
18388 * sysdeps/mips/Makefile (ASFLAGS-.o): Add $(pie-default).
18389 (ASFLAGS-.op): Likewise.
18390
18391 2017-12-15 Joseph Myers <joseph@codesourcery.com>
18392
18393 * io/Makefile (tst-open-tmpfile-ARGS): New variable.
18394 * posix/tst-mmap-offset.c (fname): Use /tmp.
18395 * stdlib/tst-setcontext3.sh (tempfile): Use ${objpfx}.
18396
18397 2017-12-15 Steve Ellcey <sellcey@cavium.com>
18398
18399 * nscd/dbg_log.c (dbg_log): Increase msg buffer size.
18400
18401 2017-12-15 Thomas Schwinge <thomas@codesourcery.com>
18402
18403 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno): Don't set
18404 errno.
18405
18406 2017-12-15 Joseph Myers <joseph@codesourcery.com>
18407
18408 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
18409 --with-float=hard for arm-linux-gnueabihf configurations.
18410
18411 [BZ #14121]
18412 * po/Makefile (generated): Add $(ALL_LINGUAS:%=%.mo).
18413 (%.mo): Change to $(objpfx)%.mo. Use $(make-target-directory).
18414 ($(mo-installed)): Use $(objpfx)%.mo.
18415 (realclean): Remove rule.
18416
18417 * po/Makefile (linguas): Remove rule and dependencies.
18418 (linguas.mo): Likewise.
18419 (.PHONY): Do not depend on linguas and linguas.mo.
18420 (podir): Remove variable.
18421 (pofiles): Likewise.
18422 [$(pofiles)] (%.po): Remove rule.
18423
18424 * sysdeps/sparc/sparc32/Makefile
18425 ($(divrem:%=$(sysdep_dir)/sparc/sparc32/%.S)): Do not include
18426 start-of-line whitespace in argument of echo.
18427 * sysdeps/sparc/sparc32/divrem.m4: Avoid generating lines starting
18428 with whitespace. Generate __wrap_.udiv alias.
18429 * sysdeps/sparc/sparc32/rem.S: Regenerated.
18430 * sysdeps/sparc/sparc32/sdiv.S: Likewise.
18431 * sysdeps/sparc/sparc32/udiv.S: Likewise.
18432 * sysdeps/sparc/sparc32/urem.S: Likewise.
18433
18434 2017-12-15 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18435
18436 * sysdeps/powerpc/powerpc64/power8/strcpy.S: Use vectors
18437 for aligned inputs.
18438
18439 2017-12-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
18440
18441 * benchtests/bench-strcmp.c: Print output in JSON format.
18442
18443 * elf/dl-tunables.list: Remove redundant SXID_ERASE.
18444
18445 2017-12-14 Florian Weimer <fweimer@redhat.com>
18446
18447 [BZ #22607]
18448 CVE-2017-1000409
18449 * elf/dl-load.c (_dl_init_paths): Compute number of components in
18450 the expanded path string.
18451
18452 2017-12-14 Florian Weimer <fweimer@redhat.com>
18453
18454 [BZ #22606]
18455 CVE-2017-1000408
18456 * elf/dl-load.c (system_dirs): Update comment.
18457 (nsystem_dirs_len): Use array_length.
18458 (_dl_init_paths): Use nsystem_dirs_len to compute the array size.
18459
18460 2017-12-14 Florian Weimer <fweimer@redhat.com>
18461
18462 Simplify compiling most of support/ outside of glibc.
18463 * support/check_addrinfo.c: Include <string.h>.
18464 * support/check_dns_packet.c: Likewise.
18465 * support/check_hostent.c: Likewise.
18466 * support/support_can_chroot.c: Include <support/xunistd.h>.
18467 * support/support_format_addrinfo.c: Include <stdlib.h>
18468 * support/support_format_dns_packet.c: Include <stdbool.h>.
18469 * support/support_format_hostent.c: Include <stdlib.h>.
18470 * support/support_format_netent.c: Likewise.
18471 * support/support_write_string.c: Include <support/xunistd.h>.
18472 * support/xdlfcn.c: Include <stddef.h>.
18473
18474 2017-12-14 H.J. Lu <hongjiu.lu@intel.com>
18475
18476 * sysdeps/x86_64/fpu/s_cosf.S: Removed.
18477
18478 2017-12-14 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18479 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18480
18481 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
18482 (sysdeps_routines): Add memset-niagara7.
18483 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdes_rotuines):
18484 Likewise.
18485 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara7.S: New
18486 file.
18487 * sysdeps/sparc/sparc64/multiarch/memset-niagara7.S: Likewise.
18488 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
18489 (__libc_ifunc_impl_list): Add __bzero_niagara7 and __memset_niagara7.
18490 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h (IFUNC_SELECTOR):
18491 Add niagara7 option.
18492 * NEWS: Mention sparc m7 optimized memcpy, mempcpy, memmove, and
18493 memset.
18494
18495 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
18496 (sysdeps_routines): Add memcpy-memmove-niagara7 and memmove-ultra1.
18497 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdeps_routines):
18498 Likewise.
18499 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-memmove-niagara7.S:
18500 New file.
18501 * sysdeps/sparc/sparc32/sparcv9/multiarch/memmove-ultra1.S: Likewise.
18502 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memmove.c: Likewise.
18503 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
18504 (__libc_ifunc_impl_list): Add __memcpy_niagara7, __mempcpy_niagara7,
18505 and __memmove_niagara7.
18506 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h (IFUNC_SELECTOR):
18507 Add niagara7 option.
18508 * sysdeps/sparc/sparc64/multiarch/memmove.c: New file.
18509 * sysdeps/sparc/sparc64/multiarch/ifunc-memmove.h: Likewise.
18510 * sysdeps/sparc/sparc64/multiarch/memcpy-memmove-niagara7.S: Likewise.
18511 * sysdeps/sparc/sparc64/multiarch/memmove-ultra1.S: Likewise.
18512 * sysdeps/sparc/sparc64/multiarch/rtld-memmove.c: Likewise.
18513
18514 2017-12-14 Jose E. Marchesi <jose.marchesi@oracle.com>
18515
18516 * sysdeps/sparc/sparc32/sparcv9/memmove.S: New file.
18517 * sysdeps/sparc/sparc32/sparcv9/rtld-memmove.c: Likewise.
18518 * sysdeps/sparc/sparc64/memmove.S: Likewise.
18519 * sysdeps/sparc/sparc64/rtld-memmove.c: Likewise.
18520
18521 * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_ADP): Defined.
18522 * sysdeps/sparc/dl-procinfo.c: Added "adp" to the
18523 _dl_sparc_cap_flags array.
18524 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increment.
18525
18526 2017-12-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
18527
18528 * sysdeps/aarch64/strcmp.S (misaligned8): Compare dword at a
18529 time whenever possible.
18530
18531 2017-12-12 Carlos O'Donell <carlos@redhat.com>
18532
18533 * elf/Makefile [$(nss-crypt)$(static-nss-crypt) == yesno]
18534 (CFLAGS-tst-linkall-static.c): Undefine USE_CRYPT first.
18535
18536 2017-12-12 Joseph Myers <joseph@codesourcery.com>
18537
18538 * soft-fp/fmadf4.c: Move to ....
18539 * sysdeps/ieee754/soft-fp/s_fma.c: ... here.
18540 * soft-fp/fmasf4.c: Move to ....
18541 * sysdeps/ieee754/soft-fp/s_fmaf.c: ... here.
18542 * soft-fp/fmatf4.c: Move to ....
18543 * sysdeps/ieee754/soft-fp/s_fmal.c: ... here.
18544 * sysdeps/ieee754/soft-fp/Makefile: New file.
18545 * sysdeps/arm/preconfigure.ac: Define with_fp_cond.
18546 * sysdeps/arm/preconfigure: Regenerated.
18547 * sysdeps/arm/nofpu/Implies: New file.
18548 * sysdeps/arm/s_fma.c: Remove file.
18549 * sysdeps/arm/s_fmaf.c: Likewise.
18550 * sysdeps/m68k/coldfire/nofpu/Implies: New file.
18551 * sysdeps/m68k/coldfire/nofpu/s_fma.c: Remove file.
18552 * sysdeps/m68k/coldfire/nofpu/s_fmaf.c: Likewise.
18553 * sysdeps/microblaze/Implies: Add ieee754/soft-fp.
18554 * sysdeps/microblaze/s_fma.c: Remove file.
18555 * sysdeps/microblaze/s_fmaf.c: Likewise.
18556 * sysdeps/mips/mips32/nofpu/Implies: New file.
18557 * sysdeps/mips/mips64/n32/fpu/s_fma.c: Likewise.
18558 * sysdeps/mips/mips64/n32/nofpu/Implies: Likewise.
18559 * sysdeps/mips/mips64/n64/fpu/s_fma.c: Likewise.
18560 * sysdeps/mips/mips64/n64/nofpu/Implies: Likewise.
18561 * sysdeps/mips/ieee754/s_fma.c: Remove file.
18562 * sysdeps/mips/ieee754/s_fmaf.c: Likewise.
18563 * sysdeps/mips/ieee754/s_fmal.c: Update include for move of fmal
18564 implementation.
18565 * sysdeps/nios2/Implies: Add ieee754/soft-fp.
18566 * sysdeps/nios2/s_fma.c: Remove file.
18567 * sysdeps/nios2/s_fmaf.c: Likewise.
18568 * sysdeps/sh/nofpu/Implies: New file.
18569 * sysdeps/sh/s_fma.c: Remove file.
18570 * sysdeps/sh/s_fmaf.c: Likewise.
18571 * sysdeps/tile/Implies: Add ieee754/soft-fp.
18572 * sysdeps/tile/s_fma.c: Remove file.
18573 * sysdeps/tile/s_fmaf.c: Likewise.
18574
18575 2017-12-12 H.J. Lu <hongjiu.lu@intel.com>
18576
18577 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18578 Add s_cosf-sse2 and s_cosf-fma.
18579 (CFLAGS-s_cosf-fma.c): New.
18580 * sysdeps/x86_64/fpu/multiarch/s_cosf-fma.c: New file.
18581 * sysdeps/x86_64/fpu/multiarch/s_cosf-sse2.c: Likewise.
18582 * sysdeps/x86_64/fpu/multiarch/s_cosf.c: Likewise.
18583
18584 2017-12-12 Steve Ellcey <sellcey@cavium.com>
18585
18586 * nscd/nscd.h (init_traced_file): Change strncpy to memcpy.
18587
18588 2017-12-12 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18589
18590 * libio/Makefile (tests): Add tst-bz22415.
18591 (tst-bz22415-ENV): New rule.
18592 (generated): Add tst-bz22415.mtrace and tst-bz22415.check.
18593 (tests-special): Add tst-bz22415-mem.out.
18594 ($(objpfx)tst-bz22415-mem.out): New rule.
18595 * libio/fileops.c (_IO_new_file_seekoff): Call _IO_free_backup_area
18596 in case of a successful seek operation.
18597 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
18598 (_IO_wfile_overflow): Call _IO_free_wbackup_area in case a write
18599 buffer is required.
18600 * libio/tst-bz22415.c: New test.
18601
18602 * sysdeps/ia64/fpu/libm-test-ulps: Update.
18603
18604 2017-12-12 James Clarke <jrtc27@jrtc27.com>
18605
18606 * sysdeps/unix/sysv/linux/ia64/ipc_priv.h: New file defining
18607 __IPC_64 to 0 to avoid IPC_64 being set.
18608
18609 2017-12-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
18610
18611 [BZ #22593]
18612 * math/bits/mathcalls.h (nextafter): Remove const.
18613 (nexttoward): Likewise.
18614
18615 2017-12-12 Joseph Myers <joseph@codesourcery.com>
18616
18617 * configure.ac (--with-fp): Remove configure option.
18618 (with_fp_cond): New variable.
18619 (libc_cv_with_fp): New configure test. Use this variable instead
18620 of with_fp.
18621 * configure: Regenerated.
18622 * config.make.in (with-fp): Use @libc_cv_with_fp@.
18623 * manual/install.texi (Configuring and compiling): Remove
18624 --without-fp.
18625 * INSTALL: Regenerated.
18626 * sysdeps/m68k/preconfigure (with_fp_cond): Define for ColdFire.
18627 * sysdeps/mips/preconfigure (with_fp_cond): Define.
18628 * sysdeps/powerpc/preconfigure (with_fp_cond): Define for 32-bit.
18629 * sysdeps/sh/preconfigure (with_fp_cond): Define.
18630 * scripts/build-many-glibcs.py (Context.add_all_configs): Do not
18631 use --without-fp to configure glibc.
18632
18633 2017-12-12 Rical Jasan <ricaljasan@pacific.net>
18634
18635 * manual/locale.texi (nl_langinfo): Fix a typo.
18636
18637 2017-12-12 Aurelien Jarno <aurelien@aurel32.net>
18638
18639 [BZ #22588]
18640 * manual/conf.texi (SC_SSIZE_MAX): Rename into _SC_SSIZE_MAX.
18641
18642 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
18643
18644 * argp/Makefile (CFLAGS-argp-help.c): Replace = with +=.
18645 (CFLAGS-argp-parse.c): Likewise.
18646 (CFLAGS-argp-fmtstream.c): Likewise.
18647 * crypt/Makefile (CPPFLAGS-sha256-crypt.c): Likewise.
18648 (CPPFLAGS-sha512-crypt.c): Likewise.
18649 (CPPFLAGS-md5-crypt.c): Likewise.
18650 * debug/Makefile (CFLAGS-stack_chk_fail.c): Likewise.
18651 (CFLAGS-stack_chk_fail_local.c): Likewise.
18652 (CFLAGS-backtrace.c): Likewise.
18653 (CFLAGS-sprintf_chk.c): Likewise.
18654 (CFLAGS-snprintf_chk.c): Likewise.
18655 (CFLAGS-vsprintf_chk.c): Likewise.
18656 (CFLAGS-vsnprintf_chk.c): Likewise.
18657 (CFLAGS-asprintf_chk.c): Likewise.
18658 (CFLAGS-vasprintf_chk.c): Likewise.
18659 (CFLAGS-obprintf_chk.c): Likewise.
18660 (CFLAGS-dprintf_chk.c): Likewise.
18661 (CFLAGS-vdprintf_chk.c): Likewise.
18662 (CFLAGS-printf_chk.c): Likewise.
18663 (CFLAGS-fprintf_chk.c): Likewise.
18664 (CFLAGS-vprintf_chk.c): Likewise.
18665 (CFLAGS-vfprintf_chk.c): Likewise.
18666 (CFLAGS-gets_chk.c): Likewise.
18667 (CFLAGS-fgets_chk.c): Likewise.
18668 (CFLAGS-fgets_u_chk.c): Likewise.
18669 (CFLAGS-fread_chk.c): Likewise.
18670 (CFLAGS-fread_u_chk.c): Likewise.
18671 (CFLAGS-swprintf_chk.c): Likewise.
18672 (CFLAGS-vswprintf_chk.c): Likewise.
18673 (CFLAGS-wprintf_chk.c): Likewise.
18674 (CFLAGS-fwprintf_chk.c): Likewise.
18675 (CFLAGS-vwprintf_chk.c): Likewise.
18676 (CFLAGS-vfwprintf_chk.c): Likewise.
18677 (CFLAGS-fgetws_chk.c): Likewise.
18678 (CFLAGS-fgetws_u_chk.c): Likewise.
18679 (CFLAGS-read_chk.c): Likewise.
18680 (CFLAGS-pread_chk.c): Likewise.
18681 (CFLAGS-pread64_chk.c): Likewise.
18682 (CFLAGS-recv_chk.c): Likewise.
18683 (CFLAGS-recvfrom_chk.c): Likewise.
18684 (CFLAGS-tst-longjmp_chk.c): Likewise.
18685 (CPPFLAGS-tst-longjmp_chk.c): Likewise.
18686 (CFLAGS-tst-longjmp_chk2.c): Likewise.
18687 (CPPFLAGS-tst-longjmp_chk2.c): Likewise.
18688 (CFLAGS-tst-longjmp_chk3.c): Likewise.
18689 (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
18690 (CFLAGS-tst-chk1.c): Likewise.
18691 (CFLAGS-tst-chk2.c): Likewise.
18692 (CFLAGS-tst-chk3.c): Likewise.
18693 (CFLAGS-tst-chk4.cc): Likewise.
18694 (CFLAGS-tst-chk5.cc): Likewise.
18695 (CFLAGS-tst-chk6.cc): Likewise.
18696 (CFLAGS-tst-lfschk1.c): Likewise.
18697 (CFLAGS-tst-lfschk2.c): Likewise.
18698 (CFLAGS-tst-lfschk3.c): Likewise.
18699 (CFLAGS-tst-lfschk4.cc): Likewise.
18700 (CFLAGS-tst-lfschk5.cc): Likewise.
18701 (CFLAGS-tst-lfschk6.cc): Likewise.
18702 (CFLAGS-tst-ssp-1.c): Likewise.
18703 * dirent/Makefile (CFLAGS-scandir.c): Likewise.
18704 (CFLAGS-scandir64.c): Likewise.
18705 (CFLAGS-scandir-tail.c): Likewise.
18706 (CFLAGS-scandir64-tail.c): Likewise.
18707 * elf/Makefile (CPPFLAGS-dl-tunables.c): Likewise.
18708 (CFLAGS-dl-tunables.c): Likewise.
18709 (CFLAGS-dl-runtime.c): Likewise.
18710 (CFLAGS-dl-lookup.c): Likewise.
18711 (CFLAGS-dl-iterate-phdr.c): Likewise.
18712 (CFLAGS-vismain.c): Likewise.
18713 (CFLAGS-tst-linkall-static.c): Likewise.
18714 (CFLAGS-tst-linkall-static.c): Likewise.
18715 (CPPFLAGS-dl-load.c): Likewise.
18716 (CFLAGS-ldconfig.c): Likewise.
18717 (CFLAGS-dl-cache.c): Likewise.
18718 (CFLAGS-cache.c): Likewise.
18719 (CFLAGS-rtld.c): Likewise.
18720 (CFLAGS-multiload.c): Likewise.
18721 (CFLAGS-filtmod1.c): Likewise.
18722 (CFLAGS-tst-align.c): Likewise.
18723 (CFLAGS-tst-align2.c): Likewise.
18724 (CFLAGS-tst-alignmod.c): Likewise.
18725 (CFLAGS-tst-alignmod2.c): Likewise.
18726 (CPPFLAGS-tst-execstack.c): Likewise.
18727 (CFLAGS-tst-ptrguard1-static.c): Likewise.
18728 (CFLAGS-tst-latepthreadmod.c): Likewise.
18729 * grp/Makefile (CFLAGS-getgrgid_r.c): Likewise.
18730 (CFLAGS-getgrnam_r.c): Likewise.
18731 (CFLAGS-getgrent_r.c): Likewise.
18732 (CFLAGS-getgrent.c): Likewise.
18733 (CFLAGS-fgetgrent.c): Likewise.
18734 (CFLAGS-fgetgrent_r.c): Likewise.
18735 (CFLAGS-putgrent.c): Likewise.
18736 (CFLAGS-initgroups.c): Likewise.
18737 (CFLAGS-getgrgid.c): Likewise.
18738 * gshadow/Makefile (CFLAGS-getsgent_r.c): Likewise.
18739 (CFLAGS-getsgent.c): Likewise.
18740 (CFLAGS-fgetsgent.c): Likewise.
18741 (CFLAGS-fgetsgent_r.c): Likewise.
18742 (CFLAGS-putsgent.c): Likewise.
18743 (CFLAGS-getsgnam.c): Likewise.
18744 (CFLAGS-getsgnam_r.c): Likewise.
18745 * iconv/Makefile (CFLAGS-iconv_prog.c): Likewise.
18746 (CFLAGS-iconv_charmap.c): Likewise.
18747 (CFLAGS-dummy-repertoire.c): Likewise.
18748 (CFLAGS-charmap.c): Likewise.
18749 (CFLAGS-linereader.c): Likewise.
18750 (CFLAGS-simple-hash.c): Likewise.
18751 (CFLAGS-gconv_conf.c): Likewise.
18752 (CFLAGS-iconvconfig.c): Likewise.
18753 * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
18754 (CFLAGS-gethstbyad.c): Likewise.
18755 (CFLAGS-gethstbynm_r.c): Likewise.
18756 (CFLAGS-gethstbynm.c): Likewise.
18757 (CFLAGS-gethstbynm2_r.c): Likewise.
18758 (CFLAGS-gethstbynm2.c): Likewise.
18759 (CFLAGS-gethstent_r.c): Likewise.
18760 (CFLAGS-gethstent.c): Likewise.
18761 (CFLAGS-rcmd.c): Likewise.
18762 (CFLAGS-getnetbynm_r.c): Likewise.
18763 (CFLAGS-getnetbynm.c): Likewise.
18764 (CFLAGS-getnetbyad_r.c): Likewise.
18765 (CFLAGS-getnetbyad.c): Likewise.
18766 (CFLAGS-getnetent_r.c): Likewise.
18767 (CFLAGS-getnetent.c): Likewise.
18768 (CFLAGS-getaliasent_r.c): Likewise.
18769 (CFLAGS-getaliasent.c): Likewise.
18770 (CFLAGS-getrpcent_r.c): Likewise.
18771 (CFLAGS-getrpcent.c): Likewise.
18772 (CFLAGS-getservent_r.c): Likewise.
18773 (CFLAGS-getservent.c): Likewise.
18774 (CFLAGS-getprtent_r.c): Likewise.
18775 (CFLAGS-getprtent.c): Likewise.
18776 (CFLAGS-either_ntoh.c): Likewise.
18777 (CFLAGS-either_hton.c): Likewise.
18778 (CFLAGS-getnetgrent.c): Likewise.
18779 (CFLAGS-getnetgrent_r.c): Likewise.
18780 (CFLAGS-tst-checks-posix.c): Likewise.
18781 (CFLAGS-tst-sockaddr.c): Likewise.
18782 * intl/Makefile (CFLAGS-tst-gettext.c): Likewise.
18783 (CFLAGS-tst-translit.c): Likewise.
18784 (CFLAGS-tst-gettext2.c): Likewise.
18785 (CFLAGS-tst-codeset.c): Likewise.
18786 (CFLAGS-tst-gettext3.c): Likewise.
18787 (CFLAGS-tst-gettext4.c): Likewise.
18788 (CFLAGS-tst-gettext5.c): Likewise.
18789 (CFLAGS-tst-gettext6.c): Likewise.
18790 * io/Makefile (CFLAGS-open.c): Likewise.
18791 (CFLAGS-open64.c): Likewise.
18792 (CFLAGS-creat.c): Likewise.
18793 (CFLAGS-creat64.c): Likewise.
18794 (CFLAGS-fcntl.c): Likewise.
18795 (CFLAGS-poll.c): Likewise.
18796 (CFLAGS-ppoll.c): Likewise.
18797 (CFLAGS-lockf.c): Likewise.
18798 (CFLAGS-statfs.c): Likewise.
18799 (CFLAGS-fstatfs.c): Likewise.
18800 (CFLAGS-statvfs.c): Likewise.
18801 (CFLAGS-fstatvfs.c): Likewise.
18802 (CFLAGS-fts.c): Likewise.
18803 (CFLAGS-fts64.c): Likewise.
18804 (CFLAGS-ftw.c): Likewise.
18805 (CFLAGS-ftw64.c): Likewise.
18806 (CFLAGS-lockf.c): Likewise.
18807 (CFLAGS-posix_fallocate.c): Likewise.
18808 (CFLAGS-posix_fallocate64.c): Likewise.
18809 (CFLAGS-fallocate.c): Likewise.
18810 (CFLAGS-fallocate64.c): Likewise.
18811 (CFLAGS-read.c): Likewise.
18812 (CFLAGS-write.c): Likewise.
18813 (CFLAGS-test-stat.c): Likewise.
18814 (CFLAGS-test-lfs.c): Likewise.
18815 * libio/Makefile (CFLAGS-fileops.c): Likewise.
18816 (CFLAGS-fputc.c): Likewise.
18817 (CFLAGS-fputwc.c): Likewise.
18818 (CFLAGS-freopen64.c): Likewise.
18819 (CFLAGS-freopen.c): Likewise.
18820 (CFLAGS-fseek.c): Likewise.
18821 (CFLAGS-fseeko64.c): Likewise.
18822 (CFLAGS-fseeko.c): Likewise.
18823 (CFLAGS-ftello64.c): Likewise.
18824 (CFLAGS-ftello.c): Likewise.
18825 (CFLAGS-fwide.c): Likewise.
18826 (CFLAGS-genops.c): Likewise.
18827 (CFLAGS-getc.c): Likewise.
18828 (CFLAGS-getchar.c): Likewise.
18829 (CFLAGS-getwc.c): Likewise.
18830 (CFLAGS-getwchar.c): Likewise.
18831 (CFLAGS-iofclose.c): Likewise.
18832 (CFLAGS-iofflush.c): Likewise.
18833 (CFLAGS-iofgetpos64.c): Likewise.
18834 (CFLAGS-iofgetpos.c): Likewise.
18835 (CFLAGS-iofgets.c): Likewise.
18836 (CFLAGS-iofgetws.c): Likewise.
18837 (CFLAGS-iofputs.c): Likewise.
18838 (CFLAGS-iofputws.c): Likewise.
18839 (CFLAGS-iofread.c): Likewise.
18840 (CFLAGS-iofsetpos64.c): Likewise.
18841 (CFLAGS-iofsetpos.c): Likewise.
18842 (CFLAGS-ioftell.c): Likewise.
18843 (CFLAGS-iofwrite.c): Likewise.
18844 (CFLAGS-iogetdelim.c): Likewise.
18845 (CFLAGS-iogetline.c): Likewise.
18846 (CFLAGS-iogets.c): Likewise.
18847 (CFLAGS-iogetwline.c): Likewise.
18848 (CFLAGS-ioputs.c): Likewise.
18849 (CFLAGS-ioseekoff.c): Likewise.
18850 (CFLAGS-ioseekpos.c): Likewise.
18851 (CFLAGS-iosetbuffer.c): Likewise.
18852 (CFLAGS-iosetvbuf.c): Likewise.
18853 (CFLAGS-ioungetc.c): Likewise.
18854 (CFLAGS-ioungetwc.c): Likewise.
18855 (CFLAGS-oldfileops.c): Likewise.
18856 (CFLAGS-oldiofclose.c): Likewise.
18857 (CFLAGS-oldiofgetpos64.c): Likewise.
18858 (CFLAGS-oldiofgetpos.c): Likewise.
18859 (CFLAGS-oldiofsetpos64.c): Likewise.
18860 (CFLAGS-oldiofsetpos.c): Likewise.
18861 (CFLAGS-peekc.c): Likewise.
18862 (CFLAGS-putc.c): Likewise.
18863 (CFLAGS-putchar.c): Likewise.
18864 (CFLAGS-putwc.c): Likewise.
18865 (CFLAGS-putwchar.c): Likewise.
18866 (CFLAGS-rewind.c): Likewise.
18867 (CFLAGS-wfileops.c): Likewise.
18868 (CFLAGS-wgenops.c): Likewise.
18869 (CFLAGS-oldiofopen.c): Likewise.
18870 (CFLAGS-iofopen.c): Likewise.
18871 (CFLAGS-iofopen64.c): Likewise.
18872 (CFLAGS-oldtmpfile.c): Likewise.
18873 (CFLAGS-tst_putwc.c): Likewise.
18874 * locale/Makefile (CFLAGS-md5.c): Likewise.
18875 (CFLAGS-charmap.c): Likewise.
18876 (CFLAGS-locfile.c): Likewise.
18877 (CFLAGS-charmap-dir.c): Likewise.
18878 * login/Makefile (CFLAGS-grantpt.c): Likewise.
18879 (CFLAGS-getpt.c): Likewise.
18880 (CFLAGS-pt_chown.c): Likewise.
18881 * malloc/Makefile (CFLAGS-mcheck-init.c): Likewise.
18882 (CFLAGS-obstack.c): Likewise.
18883 * math/Makefile (CFLAGS-test-tgmath3.c): Likewise.
18884 (CFLAGS-test-double-vlen4-wrappers.c): Likewise.
18885 (CFLAGS-test-double-vlen8-wrappers.c): Likewise.
18886 (CFLAGS-test-float-vlen8-wrappers.c): Likewise.
18887 (CFLAGS-test-float-vlen16-wrappers.c): Likewise.
18888 (CFLAGS-test-tgmath.c): Likewise.
18889 (CFLAGS-test-tgmath2.c): Likewise.
18890 (CFLAGS-test-tgmath-ret.c): Likewise.
18891 (CFLAGS-test-powl.c): Likewise.
18892 (CFLAGS-test-snan.c): Likewise.
18893 (CFLAGS-test-signgam-finite.c): Likewise.
18894 (CFLAGS-test-signgam-finite-c99.c): Likewise.
18895 (CFLAGS-test-signgam-finite-c11.c): Likewise.
18896 (CFLAGS-test-signgam-uchar.c): Likewise.
18897 (CFLAGS-test-signgam-uchar-init.c): Likewise.
18898 (CFLAGS-test-signgam-uchar-static.c): Likewise.
18899 (CFLAGS-test-signgam-uchar-init-static.c): Likewise.
18900 (CFLAGS-test-signgam-uint.c): Likewise.
18901 (CFLAGS-test-signgam-uint-init.c): Likewise.
18902 (CFLAGS-test-signgam-uint-static.c): Likewise.
18903 (CFLAGS-test-signgam-uint-init-static.c): Likewise.
18904 (CFLAGS-test-signgam-ullong.c): Likewise.
18905 (CFLAGS-test-signgam-ullong-init.c): Likewise.
18906 (CFLAGS-test-signgam-ullong-static.c): Likewise.
18907 (CFLAGS-test-signgam-ullong-init-static.c): Likewise.
18908 (CFLAGS-test-math-cxx11.cc): Likewise.
18909 (CFLAGS-test-math-isinff.cc): Likewise.
18910 (CFLAGS-test-math-iszero.cc): Likewise.
18911 (CFLAGS-test-math-issignaling.cc): Likewise.
18912 (CFLAGS-test-math-iscanonical.cc): Likewise.
18913 (CFLAGS-test-iszero-excess-precision.c): Likewise.
18914 (CFLAGS-test-iseqsig-excess-precision.c): Likewise.
18915 (CFLAGS-test-flt-eval-method.c): Likewise.
18916 (CFLAGS-test-fe-snans-always-signal.c): Likewise.
18917 (CFLAGS-test-finite-macros.c): Likewise.
18918 * misc/Makefile (CFLAGS-select.c): Likewise.
18919 (CFLAGS-tsearch.c): Likewise.
18920 (CFLAGS-lsearch.c): Likewise.
18921 (CFLAGS-pselect.c): Likewise.
18922 (CFLAGS-readv.c): Likewise.
18923 (CFLAGS-writev.c): Likewise.
18924 (CFLAGS-preadv.c): Likewise.
18925 (CFLAGS-preadv64.c): Likewise.
18926 (CFLAGS-pwritev.c): Likewise.
18927 (CFLAGS-pwritev64.c): Likewise.
18928 (CFLAGS-preadv2.c): Likewise.
18929 (CFLAGS-preadv64v2.c): Likewise.
18930 (CFLAGS-pwritev2.c): Likewise.
18931 (CFLAGS-pwritev64v2.c): Likewise.
18932 (CFLAGS-usleep.c): Likewise.
18933 (CFLAGS-syslog.c): Likewise.
18934 (CFLAGS-error.c): Likewise.
18935 (CFLAGS-getpass.c): Likewise.
18936 (CFLAGS-mkstemp.c): Likewise.
18937 (CFLAGS-mkstemp64.c): Likewise.
18938 (CFLAGS-getsysstats.c): Likewise.
18939 (CFLAGS-getusershell.c): Likewise.
18940 (CFLAGS-err.c): Likewise.
18941 (CFLAGS-tst-tsearch.c): Likewise.
18942 (CFLAGS-msync.c): Likewise.
18943 (CFLAGS-fdatasync.c): Likewise.
18944 (CFLAGS-fsync.c): Likewise.
18945 * nptl/Makefile (CFLAGS-nptl-init.c): Likewise.
18946 (CFLAGS-unwind.c): Likewise.
18947 (CFLAGS-unwind-forcedunwind.c): Likewise.
18948 (CFLAGS-pthread_cancel.c): Likewise.
18949 (CFLAGS-pthread_setcancelstate.c): Likewise.
18950 (CFLAGS-pthread_setcanceltype.c): Likewise.
18951 (CFLAGS-cancellation.c): Likewise.
18952 (CFLAGS-libc-cancellation.c): Likewise.
18953 (CFLAGS-pthread_exit.c): Likewise.
18954 (CFLAGS-forward.c): Likewise.
18955 (CFLAGS-pthread_testcancel.c): Likewise.
18956 (CFLAGS-pthread_join.c): Likewise.
18957 (CFLAGS-pthread_timedjoin.c): Likewise.
18958 (CFLAGS-pthread_once.c): Likewise.
18959 (CFLAGS-pthread_cond_wait.c): Likewise.
18960 (CFLAGS-sem_wait.c): Likewise.
18961 (CFLAGS-sem_timedwait.c): Likewise.
18962 (CFLAGS-fcntl.c): Likewise.
18963 (CFLAGS-lockf.c): Likewise.
18964 (CFLAGS-pread.c): Likewise.
18965 (CFLAGS-pread64.c): Likewise.
18966 (CFLAGS-pwrite.c): Likewise.
18967 (CFLAGS-pwrite64.c): Likewise.
18968 (CFLAGS-wait.c): Likewise.
18969 (CFLAGS-waitpid.c): Likewise.
18970 (CFLAGS-sigwait.c): Likewise.
18971 (CFLAGS-msgrcv.c): Likewise.
18972 (CFLAGS-msgsnd.c): Likewise.
18973 (CFLAGS-tcdrain.c): Likewise.
18974 (CFLAGS-open.c): Likewise.
18975 (CFLAGS-open64.c): Likewise.
18976 (CFLAGS-pause.c): Likewise.
18977 (CFLAGS-recv.c): Likewise.
18978 (CFLAGS-send.c): Likewise.
18979 (CFLAGS-accept.c): Likewise.
18980 (CFLAGS-sendto.c): Likewise.
18981 (CFLAGS-connect.c): Likewise.
18982 (CFLAGS-recvfrom.c): Likewise.
18983 (CFLAGS-recvmsg.c): Likewise.
18984 (CFLAGS-sendmsg.c): Likewise.
18985 (CFLAGS-close.c): Likewise.
18986 (CFLAGS-read.c): Likewise.
18987 (CFLAGS-write.c): Likewise.
18988 (CFLAGS-nanosleep.c): Likewise.
18989 (CFLAGS-sigsuspend.c): Likewise.
18990 (CFLAGS-msync.c): Likewise.
18991 (CFLAGS-fdatasync.c): Likewise.
18992 (CFLAGS-fsync.c): Likewise.
18993 (CFLAGS-pt-system.c): Likewise.
18994 (CFLAGS-tst-cleanup2.c): Likewise.
18995 (CFLAGS-tst-cleanupx2.c): Likewise.
18996 (CFLAGS-flockfile.c): Likewise.
18997 (CFLAGS-ftrylockfile.c): Likewise.
18998 (CFLAGS-funlockfile.c): Likewise.
18999 (CFLAGS-tst-initializers1.c): Likewise.
19000 (CFLAGS-tst-initializers1-c89.c): Likewise.
19001 (CFLAGS-tst-initializers1-c99.c): Likewise.
19002 (CFLAGS-tst-initializers1-c11.c): Likewise.
19003 (CFLAGS-tst-initializers1-gnu89.c): Likewise.
19004 (CFLAGS-tst-initializers1-gnu99.c): Likewise.
19005 (CFLAGS-tst-initializers1-gnu11.c): Likewise.
19006 * nscd/Makefile (CFLAGS-nscd_getpw_r.c): Likewise.
19007 (CFLAGS-nscd_getgr_r.c): Likewise.
19008 (CFLAGS-nscd_gethst_r.c): Likewise.
19009 (CFLAGS-nscd_getai.c): Likewise.
19010 (CFLAGS-nscd_initgroups.c): Likewise.
19011 * posix/Makefile (CFLAGS-getaddrinfo.c): Likewise.
19012 (CFLAGS-pause.c): Likewise.
19013 (CFLAGS-pread.c): Likewise.
19014 (CFLAGS-pread64.c): Likewise.
19015 (CFLAGS-pwrite.c): Likewise.
19016 (CFLAGS-pwrite64.c): Likewise.
19017 (CFLAGS-sleep.c): Likewise.
19018 (CFLAGS-wait.c): Likewise.
19019 (CFLAGS-waitid.c): Likewise.
19020 (CFLAGS-waitpid.c): Likewise.
19021 (CFLAGS-getopt.c): Likewise.
19022 (CFLAGS-wordexp.c): Likewise.
19023 (CFLAGS-sysconf.c): Likewise.
19024 (CFLAGS-pathconf.c): Likewise.
19025 (CFLAGS-fpathconf.c): Likewise.
19026 (CFLAGS-spawn.c): Likewise.
19027 (CFLAGS-spawnp.c): Likewise.
19028 (CFLAGS-spawni.c): Likewise.
19029 (CFLAGS-glob.c): Likewise.
19030 (CFLAGS-glob64.c): Likewise.
19031 (CFLAGS-getconf.c): Likewise.
19032 (CFLAGS-nanosleep.c): Likewise.
19033 * pwd/Makefile (CFLAGS-getpwent_r.c): Likewise.
19034 (CFLAGS-getpwent.c): Likewise.
19035 (CFLAGS-getpw.c): Likewise.
19036 (CFLAGS-fgetpwent_r.c): Likewise.
19037 * resolv/Makefile (CFLAGS-res_hconf.c): Likewise.
19038 * rt/Makefile (CFLAGS-aio_suspend.c): Likewise.
19039 (CFLAGS-mq_timedreceive.c): Likewise.
19040 (CFLAGS-mq_timedsend.c): Likewise.
19041 (CFLAGS-clock_nanosleep.c): Likewise.
19042 (CFLAGS-librt-cancellation.c): Likewise.
19043 * shadow/Makefile (CFLAGS-getspent_r.c): Likewise.
19044 (CFLAGS-getspent.c): Likewise.
19045 (CFLAGS-fgetspent.c): Likewise.
19046 (CFLAGS-fgetspent_r.c): Likewise.
19047 (CFLAGS-putspent.c): Likewise.
19048 (CFLAGS-getspnam.c): Likewise.
19049 (CFLAGS-getspnam_r.c): Likewise.
19050 * signal/Makefile (CFLAGS-sigpause.c): Likewise.
19051 (CFLAGS-sigsuspend.c): Likewise.
19052 (CFLAGS-sigtimedwait.c): Likewise.
19053 (CFLAGS-sigwait.c): Likewise.
19054 (CFLAGS-sigwaitinfo.c): Likewise.
19055 (CFLAGS-sigreturn.c): Likewise.
19056 * stdio-common/Makefile (CFLAGS-vfprintf.c): Likewise.
19057 (CFLAGS-vfwprintf.c): Likewise.
19058 (CFLAGS-tmpfile.c): Likewise.
19059 (CFLAGS-tmpfile64.c): Likewise.
19060 (CFLAGS-tempname.c): Likewise.
19061 (CFLAGS-psignal.c): Likewise.
19062 (CFLAGS-vprintf.c): Likewise.
19063 (CFLAGS-cuserid.c): Likewise.
19064 (CFLAGS-errlist.c): Likewise.
19065 (CFLAGS-siglist.c): Likewise.
19066 (CFLAGS-scanf15.c): Likewise.
19067 (CFLAGS-scanf17.c): Likewise.
19068 * stdlib/Makefile (CFLAGS-bsearch.c): Likewise.
19069 (CFLAGS-msort.c): Likewise.
19070 (CFLAGS-qsort.c): Likewise.
19071 (CFLAGS-system.c): Likewise.
19072 (CFLAGS-fmtmsg.c): Likewise.
19073 (CFLAGS-strfmon.c): Likewise.
19074 (CFLAGS-strfmon_l.c): Likewise.
19075 (CFLAGS-strfromd.c): Likewise.
19076 (CFLAGS-strfromf.c): Likewise.
19077 (CFLAGS-strfroml.c): Likewise.
19078 (CFLAGS-tst-bsearch.c): Likewise.
19079 (CFLAGS-tst-qsort.c): Likewise.
19080 (CFLAGS-tst-makecontext2.c): Likewise.
19081 * sunrpc/Makefile (CFLAGS-xbootparam_prot.c): Likewise.
19082 (CFLAGS-xnlm_prot.c): Likewise.
19083 (CFLAGS-xrstat.c): Likewise.
19084 (CFLAGS-xyppasswd.c): Likewise.
19085 (CFLAGS-xklm_prot.c): Likewise.
19086 (CFLAGS-xrex.c): Likewise.
19087 (CFLAGS-xsm_inter.c): Likewise.
19088 (CFLAGS-xmount.c): Likewise.
19089 (CFLAGS-xrusers.c): Likewise.
19090 (CFLAGS-xspray.c): Likewise.
19091 (CFLAGS-xnfs_prot.c): Likewise.
19092 (CFLAGS-xrquota.c): Likewise.
19093 (CFLAGS-xkey_prot.c): Likewise.
19094 (CFLAGS-auth_unix.c): Likewise.
19095 (CFLAGS-key_call.c): Likewise.
19096 (CFLAGS-pmap_rmt.c): Likewise.
19097 (CFLAGS-clnt_perr.c): Likewise.
19098 (CFLAGS-openchild.c): Likewise.
19099 * sysvipc/Makefile (CFLAGS-msgrcv.c): Likewise.
19100 (CFLAGS-msgsnd.c): Likewise.
19101 * termios/Makefile (CFLAGS-tcdrain.c): Likewise.
19102 * time/Makefile (CFLAGS-tzfile.c): Likewise.
19103 (CFLAGS-tzset.c): Likewise.
19104 (CFLAGS-getdate.c): Likewise.
19105 (CFLAGS-test_time.c): Likewise.
19106 (CPPFLAGS-tst-tzname.c): Likewise.
19107 * timezone/Makefile (CFLAGS-zdump.c): Likewise.
19108 (CFLAGS-zic.c): Likewise.
19109 * wcsmbs/Makefile (CFLAGS-wcwidth.c): Likewise.
19110 (CFLAGS-wcswidth.c): Likewise.
19111 (CFLAGS-wcstol.c): Likewise.
19112 (CFLAGS-wcstoul.c): Likewise.
19113 (CFLAGS-wcstoll.c): Likewise.
19114 (CFLAGS-wcstoull.c): Likewise.
19115 (CFLAGS-wcstod.c): Likewise.
19116 (CFLAGS-wcstold.c): Likewise.
19117 (CFLAGS-wcstof128.c): Likewise.
19118 (CFLAGS-wcstof.c): Likewise.
19119 (CFLAGS-wcstol_l.c): Likewise.
19120 (CFLAGS-wcstoul_l.c): Likewise.
19121 (CFLAGS-wcstoll_l.c): Likewise.
19122 (CFLAGS-wcstoull_l.c): Likewise.
19123 (CFLAGS-wcstod_l.c): Likewise.
19124 (CFLAGS-wcstold_l.c): Likewise.
19125 (CFLAGS-wcstof128_l.c): Likewise.
19126 (CFLAGS-wcstof_l.c): Likewise.
19127 (CPPFLAGS-tst-wchar-h.c): Likewise.
19128 (CPPFLAGS-wcstold_l.c): Likewise.
19129
19130 2017-12-11 Paul A. Clarke <pc@us.ibm.com>
19131
19132 * sysdeps/ieee754/flt-32/s_cosf.c: New implementation.
19133
19134 2017-12-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19135 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
19136
19137 * manual/tunables.texi (Hardware Capability Tunables): Document
19138 glibc.tune.cached_memopt.
19139 * sysdeps/powerpc/cpu-features.c: New file.
19140 * sysdeps/powerpc/cpu-features.h: New file.
19141 * sysdeps/powerpc/dl-procinfo.c [!IS_IN(ldconfig)]: Add
19142 _dl_powerpc_cpu_features.
19143 * sysdeps/powerpc/dl-tunables.list: New file.
19144 * sysdeps/powerpc/ldsodefs.h: Include cpu-features.h.
19145 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
19146 (INIT_ARCH): Initialize use_aligned_memopt.
19147 * sysdeps/powerpc/powerpc64/dl-machine.h [defined(SHARED &&
19148 IS_IN(rtld))]: Restrict dl_platform_init availability and
19149 initialize CPU features used by tunables.
19150 * sysdeps/powerpc/powerpc64/multiarch/Makefile (sysdep_routines):
19151 Add memcpy-power8-cached.
19152 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add
19153 __memcpy_power8_cached.
19154 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
19155 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power8-cached.S:
19156 New file.
19157
19158 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
19159
19160 * string/Makefile (CFLAGS-inl-tester.c): Replace = with +=.
19161 (CFLAGS-noinl-tester.c): Likewise.
19162 (CFLAGS-tst-strlen.c): Likewise.
19163 (CFLAGS-stratcliff.c): Likewise.
19164 (CFLAGS-test-ffs.c): Likewise.
19165 (CFLAGS-tst-inlcall.c): Likewise.
19166 (CFLAGS-tst-xbzero-opt.c): Likewise.
19167 (CFLAGS-memcpy.c): Likewise.
19168 (CFLAGS-wordcopy.c): Likewise.
19169
19170 2017-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
19171
19172 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
19173 Store r15 on stack and add cfi rule.
19174 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
19175 Likewise.
19176
19177 2017-12-10 Aurelien Jarno <aurelien@aurel32.net>
19178
19179 [BZ #22577]
19180 * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf
19181 call.
19182
19183 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
19184
19185 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
19186 Add s_sinf-sse2 and s_sinf-fma.
19187 (CFLAGS-s_sinf-fma.c): New.
19188 * sysdeps/x86_64/fpu/multiarch/s_sinf-fma.c: New file.
19189 * sysdeps/x86_64/fpu/multiarch/s_sinf-sse2.c: Likewise.
19190 * sysdeps/x86_64/fpu/multiarch/s_sinf.c: Likewise.
19191
19192 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
19193
19194 * sysdeps/x86_64/fpu/s_sinf.S: Removed.
19195
19196 2017-12-07 Joseph Myers <joseph@codesourcery.com>
19197
19198 [BZ #22568]
19199 * math/s_ctan_template.c (M_DECL_FUNC (__ctan)): Set imaginary
19200 part of result to imaginary part of argument if it is zero and the
19201 real part of the argument is not finite.
19202 * math/s_ctanh_template.c (M_DECL_FUNC (__ctanh)): Set real part
19203 of result to real part of argument if it is zero and the imaginary
19204 part of the argument is not finite.
19205
19206 2017-12-07 Mike FABIAN <mfabian@redhat.com>
19207
19208 [BZ #22524]
19209 * localedata/Makefile: Add lt_LT.UTF-8 to test-input
19210 and to the list of locales to be built for testing.
19211 * localedata/lt_LT.UTF-8.in: New file for testing the collation.
19212 * localedata/locales/lt_LT (LC_COLLATE): Use “copy "iso14651_t1"”
19213 and build the collation rules upon that.
19214
19215 2017-12-07 Joseph Myers <joseph@codesourcery.com>
19216
19217 * bits/floatn-common.h (__HAVE_FLOAT32): Define to 1.
19218 * manual/math.texi (Mathematics): Document support for _Float32.
19219 * math/Makefile (test-types): Add float32.
19220 * math/Versions (GLIBC_2.27): Add _Float32 functions.
19221 * stdlib/Versions (GLIBC_2.27): Likewise.
19222 * wcsmbs/Versions (GLIBC_2.27): Likewise.
19223 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
19224 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
19225 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
19226 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
19227 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
19228 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
19229 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
19230 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
19231 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
19232 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
19233 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
19234 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
19235 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
19236 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
19237 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
19238 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
19239 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
19240 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
19241 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
19242 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
19243 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
19244 Likewise.
19245 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
19246 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
19247 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
19248 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
19249 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
19250 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
19251 Likewise.
19252 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
19253 Likewise.
19254 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
19255 Likewise.
19256 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
19257 Likewise.
19258
19259 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
19260 Likewise.
19261 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
19262 Likewise.
19263 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
19264 Likewise.
19265 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
19266 Likewise.
19267 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
19268 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
19269 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
19270 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
19271 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
19272 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
19273 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
19274 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
19275 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
19276 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
19277 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
19278 Likewise.
19279 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
19280 Likewise.
19281 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
19282 Likewise.
19283 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
19284 Likewise.
19285 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
19286 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
19287 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
19288 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
19289 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
19290 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
19291 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
19292 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
19293
19294 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19295
19296 * stdlib/strtof.c: Include <bits/floatn.h>
19297 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32): Define
19298 and later undefine as macro. Define as weak alias if
19299 [!USE_WIDE_CHAR].
19300 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32): Define
19301 and later undefine as macro. Define as weak alias if
19302 [USE_WIDE_CHAR].
19303 * stdlib/strtof_l.c: Include <bits/floatn.h>
19304 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32_l): Define
19305 and later undefine as macro. Define as weak alias if
19306 [!USE_WIDE_CHAR].
19307 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32_l): Define
19308 and later undefine as macro. Define as weak alias if
19309 [USE_WIDE_CHAR].
19310
19311 * stdlib/strfromf.c: Include <bits/floatn.h>.
19312 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strfromf32): Define
19313 and later undefine as macro and define as weak alias.
19314
19315 * math/test-float32.h: New file.
19316
19317 * sysdeps/generic/libm-alias-float.h: Include <bits/floatn.h>.
19318 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32]
19319 (libm_alias_float_other_r): Create f32 alias.
19320 (libm_alias_float_r): Use semicolon before call to
19321 libm_alias_float_other_r.
19322
19323 * sysdeps/ia64/fpu/e_exp2f.S (__exp2f): Use exp2 not __exp2 as
19324 second argument to libm_alias_float_other.
19325 * sysdeps/ia64/fpu/e_log2f.S (__log2f): Use log2 not __log2 as
19326 second argument to libm_alias_float_other.
19327 * sysdeps/ia64/fpu/e_powf.S (__powf): Use pow not __pow as second
19328 argument to libm_alias_float_other.
19329
19330 [BZ #22561]
19331 * math/s_cacosh_template.c (M_DECL_FUNC (__cacosh)): Use pi/2 for
19332 real part of result for argument 0 + i * NaN.
19333 * math/libm-test-cacosh.inc (cacosh_test_data): Update expected
19334 results for tests of 0 + i * NaN.
19335
19336 2017-12-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19337
19338 * sysdeps/alpha/fpu/libm-test-ulps: Update.
19339
19340 2017-12-06 David S. Miller <davem@davemloft.net>
19341
19342 * sysdeps/sparc/fpu/libm-test-ulps: Update
19343 exp_{downward,towardzero,upward} ulps.
19344
19345 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19346
19347 * sysdeps/ieee754/ldbl-96/e_j1l.c (qone): Don't make local
19348 variables static.
19349
19350 * sysdeps/ieee754/ldbl-128/e_j0l.c (Y0_2N): Make const.
19351 (Y0_2D): Likewise.
19352 * sysdeps/ieee754/ldbl-128/e_j1l.c (Y0_2N): Likewise.
19353 (Y0_2D): Likewise.
19354 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (Y0_2N): Likewise.
19355 (Y0_2D): Likewise.
19356 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (Y0_2N): Likewise.
19357 (Y0_2D): Likewise.
19358
19359 2017-12-06 Mike FABIAN <mfabian@redhat.com>
19360
19361 [BZ #22515]
19362 * localedata/Makefile: Add hsb_DE.UTF-8 to test-input
19363 and to the list of locales to be built for testing.
19364 * localedata/hsb_DE.UTF-8.in: New file for testing the collation.
19365 * localedata/locales/hsb_DE (LC_COLLATE): Use “copy "iso14651_t1"”
19366 and build the collation rules upon that.
19367
19368 2017-12-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
19369
19370 * NEWS: Add sinf to list of optimized functions.
19371
19372 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19373
19374 * bits/floatn-common.h (__HAVE_FLOAT64): Define to 1.
19375 (__HAVE_FLOAT32X): Likewise.
19376 * manual/math.texi (Mathematics): Document support for _Float64
19377 and _Float32x.
19378 * math/Makefile (test-types): Add float64 and float32x.
19379 * math/Versions (GLIBC_2.27): Add _Float64 and _Float32x
19380 functions.
19381 * stdlib/Versions (GLIBC_2.27): Likewise.
19382 * wcsmbs/Versions (GLIBC_2.27): Likewise.
19383 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
19384 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
19385 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
19386 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
19387 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
19388 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
19389 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
19390 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
19391 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
19392 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
19393 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
19394 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
19395 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
19396 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
19397 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
19398 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
19399 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
19400 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
19401 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
19402 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
19403 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
19404 Likewise.
19405 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
19406 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
19407 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
19408 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
19409 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
19410 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
19411 Likewise.
19412 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
19413 Likewise.
19414 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
19415 Likewise.
19416 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
19417 Likewise.
19418 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
19419 Likewise.
19420 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
19421 Likewise.
19422 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
19423 Likewise.
19424 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
19425 Likewise.
19426 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
19427 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
19428 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
19429 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
19430 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
19431 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
19432 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
19433 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
19434 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
19435 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
19436 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
19437 Likewise.
19438 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
19439 Likewise.
19440 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
19441 Likewise.
19442 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
19443 Likewise.
19444 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
19445 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
19446 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
19447 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
19448 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
19449 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
19450 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
19451 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
19452
19453 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19454
19455 * bits/floatn-common.h: Include <bits/long-double.h>.
19456 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19457 && __NO_LONG_DOUBLE_MATH] (__f64): Use suffix 'l'.
19458 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19459 && __NO_LONG_DOUBLE_MATH] (__CFLOAT64): Use _Complex long double.
19460 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19461 && __NO_LONG_DOUBLE_MATH] (_Float64): Use long double.
19462 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19463 (__builtin_huge_valf64): Use __builtin_huge_vall.
19464 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19465 (__builtin_inff64): Use __builtin_infl.
19466 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19467 (__builtin_nanf64): Use __builtin_nanl.
19468 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19469 (__builtin_nansf64): Use __builtin_nansl.
19470
19471 2017-12-05 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
19472 Paul E. Murphy <murphyp@linux.vnet.ibm.com>
19473 Carlos O'Donnell <carlos@redhat.com>
19474
19475 * elf/dl-tunables.list: Add elision parameters.
19476 * manual/tunables.texi: Add entries about elision tunable.
19477 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c:
19478 Add callback functions to dynamically enable/disable elision.
19479 Add multiple callbacks functions to set elision parameters.
19480 Deleted __libc_enable_secure check.
19481 * sysdeps/unix/sysv/linux/s390/elision-conf.c: Likewise.
19482 * sysdeps/unix/sysv/linux/x86/elision-conf.c: Likewise.
19483 * configure: Regenerated.
19484 * configure.ac: Option enable_lock_elision was deleted.
19485 * config.h.in: ENABLE_LOCK_ELISION flag was deleted.
19486 * config.make.in: Remove references to enable_lock_elision.
19487 * manual/install.texi: Elision configure option was removed.
19488 * INSTALL: Regenerated to remove enable_lock_elision.
19489 * nptl/Makefile:
19490 Disable elision so it can verify error case for destroying a mutex.
19491 * sysdeps/powerpc/nptl/elide.h:
19492 Cleanup ENABLE_LOCK_ELISION check.
19493 Deleted macros for the case when ENABLE_LOCK_ELISION was not defined.
19494 * sysdeps/s390/configure: Regenerated.
19495 * sysdeps/s390/configure.ac: Remove references to enable_lock_elision..
19496 * nptl/tst-mutex8.c:
19497 Deleted all #ifndef ENABLE_LOCK_ELISION from the test.
19498 * sysdeps/powerpc/powerpc32/sysdep.h:
19499 Deleted all ENABLE_LOCK_ELISION checks.
19500 * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
19501 * sysdeps/powerpc/sysdep.h: Likewise.
19502 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h: Likewise.
19503 * sysdeps/unix/sysv/linux/powerpc/force-elision.h: Likewise.
19504 * sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
19505 * sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
19506 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
19507 * sysdeps/unix/sysv/linux/s390/Makefile: Remove references to
19508 enable-lock-elision.
19509
19510 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19511
19512 * stdlib/strtod.c: Include <bits/floatn.h>.
19513 (BUILD_DOUBLE): New macro.
19514 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19515 (strtof64): Define and later undefine as macro. Define as weak
19516 alias if [!USE_WIDE_CHAR].
19517 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19518 (wcstof64): Define and later undefine as macro. Define as weak
19519 alias if [USE_WIDE_CHAR].
19520 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19521 (strtof32x): Define and later undefine as macro. Define as weak
19522 alias if [!USE_WIDE_CHAR].
19523 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19524 (wcstof32x): Define and later undefine as macro. Define as weak
19525 alias if [USE_WIDE_CHAR].
19526 * stdlib/strtod_l.c: Include <bits/floatn.h>.
19527 (BUILD_DOUBLE): New macro.
19528 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19529 (strtof64_l): Define and later undefine as macro. Define as weak
19530 alias if [!USE_WIDE_CHAR].
19531 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19532 (wcstof64_l): Define and later undefine as macro. Define as weak
19533 alias if [USE_WIDE_CHAR].
19534 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19535 (strtof32x_l): Define and later undefine as macro. Define as weak
19536 alias if [!USE_WIDE_CHAR].
19537 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19538 (wcstof32x_l): Define and later undefine as macro. Define as weak
19539 alias if [USE_WIDE_CHAR].
19540
19541 2017-12-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19542
19543 * sysdeps/ieee754/flt-32/s_sinf.c (ones): Define as double.
19544 (reduced): Use ones as double instead of integer.
19545
19546 2017-12-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
19547
19548 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Use isless.
19549
19550 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19551
19552 * stdlib/strfromd.c: Include <bits/floatn.h>.
19553 [__HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64] (strfromf64): Define
19554 and later undefine as macro and define as weak alias.
19555 [__HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X] (strfromf32x):
19556 Likewise.
19557
19558 * math/test-float32x.h: New file.
19559 * math/test-float64.h: Likewise.
19560
19561 * sysdeps/generic/libm-alias-double.h: Include <bits/floatn.h>.
19562 (libm_alias_double_other_r_f64): New macro.
19563 (libm_alias_double_other_r_f32x): Likewise.
19564 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
19565 libm_alias_double_other_r_f32x.
19566 (libm_alias_double_r): Use semicolon before call to
19567 libm_alias_double_other_r.
19568 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Include
19569 <bits/floatn.h>.
19570 (libm_alias_double_other_r_f64): New macro.
19571 (libm_alias_double_other_r_f32x): Likewise.
19572 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
19573 libm_alias_double_other_r_f32x.
19574
19575 2017-12-05 H.J. Lu <hongjiu.lu@intel.com>
19576
19577 * sysdeps/ieee754/flt-32/s_sinf.c (reduced): Replace long with
19578 int.
19579 (SINF_FUNC): Likewise. Replace floor with simple casts.
19580
19581 2017-12-05 Mike FABIAN <mfabian@redhat.com>
19582
19583 [BZ #22517]
19584 * localedata/Makefile: Add et_EE.UTF-8 to test-input
19585 and to the list of locales to be built for testing.
19586 * localedata/et_EE.UTF-8.in: New file for testing the collation.
19587 * localedata/locales/et_EE (LC_COLLATE): Use “copy "iso14651_t1"”
19588 and build the collation rules upon that.
19589
19590 2017-12-05 Chris Metcalf <cmetcalf@mellanox.com>
19591
19592 * sysdeps/tile/tilegx/string-endian.h (VECOP): Provide working
19593 replacements for __insn_xxx builtins for v1cmpeq, v1cmpltu,
19594 v1cmpne, v1add, v1shru, v1shl (register and immediate versions).
19595 * sysdeps/tile/tilegx/memchr.c (__memchr): Use VECOP function
19596 instead of __insn__xxx.
19597 * sysdeps/tile/tilegx/rawmemchr.c (__rawmemchr): Likewise.
19598 * sysdeps/tile/tilegx/strstr.c (strcasechr): Likewise.
19599 * sysdeps/tile/tilegx/strrchr.c (strrchr): Likewise.
19600 * sysdeps/tile/tilegx/strlen.c (strlen): Likewise.
19601 * sysdeps/tile/tilegx/strchrnul.c (__strchrnul): Likewise.
19602 * sysdeps/tile/tilegx/strchr.c (strchr): Likewise.
19603
19604 2017-12-05 Florian Weimer <fweimer@redhat.com>
19605
19606 Linux: Implement interfaces for memory protection keys
19607 * support/Makefile (libsupport-routines): Add xraise, xsigaction,
19608 xsignal, xsysconf.
19609 * support/xsignal.h (xraise, xsignal, xsigaction): Declare.
19610 * support/xunistd.h (xsysconf): Declare.
19611 * support/xraise.c: New file.
19612 * support/xsigaction.c: Likewise.
19613 * support/xsignal.c: Likewise.
19614 * support/xsysconf.c: Likewise.
19615 * sysdeps/unix/sysv/linux/Makefile [misc] (routines): Add
19616 pkey_set, pkey_get, pkey_mprotect.
19617 [misc] (tests): Add tst-pkey.
19618 (tst-pkey): Link with -lpthread.
19619 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add pkey_alloc,
19620 pkey_free, pkey_set, pkey_get, pkey_mprotect.
19621 * sysdeps/unix/sysv/linux/bits/mman-linux.h (PKEY_DISABLE_ACCESS)
19622 (PKEY_DISABLE_WRITE): Define.
19623 (pkey_alloc, pkey_free, pkey_set, pkey_get, pkey_mprotect):
19624 Declare.
19625 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SEGV_BNDERR)
19626 (SEGV_PKUERR): Add.
19627 * sysdeps/unix/sysv/linux/pkey_get.c: New file.
19628 * sysdeps/unix/sysv/linux/pkey_set.c: Likewise.
19629 * sysdeps/unix/sysv/linux/pkey_mprotect.c: Likewise.
19630 * sysdeps/unix/sysv/linux/syscalls.list (pkey_alloc, pkey_free):
19631 Add.
19632 * sysdeps/unix/sysv/linux/tst-pkey.c: New file.
19633 * sysdeps/unix/sysv/linux/x86/arch-pkey.h: Likewise.
19634 * sysdeps/unix/sysv/linux/x86/pkey_get.c: Likewise.
19635 * sysdeps/unix/sysv/linux/x86/pkey_set.c: Likewise.
19636 * sysdeps/unix/sysv/linux/**.abilist: Update.
19637
19638 2017-12-05 Florian Weimer <fweimer@redhat.com>
19639
19640 * support/tst-test_compare.c (subprocess): Use long long instead
19641 of long argument for consistent type width across 32-bit and
19642 64-bit architectures.
19643 (do_test): Adjust expected output.
19644
19645 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19646
19647 * sysdeps/powerpc/fpu/s_cosf.c: Include <libm-alias-float.h>.
19648 (cosf): Define using libm_alias_float.
19649 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-float.h>.
19650 (fabsf): Define using libm_alias_float.
19651 * sysdeps/powerpc/fpu/s_fmaf.S: Include <libm-alias-float.h>.
19652 (fmaf): Define using libm_alias_float.
19653 * sysdeps/powerpc/fpu/s_rintf.c: Include <libm-alias-float.h>.
19654 (rintf): Define using libm_alias_float.
19655 * sysdeps/powerpc/fpu/s_sinf.c: Include <libm-alias-float.h>.
19656 (sinf): Define using libm_alias_float.
19657 * sysdeps/powerpc/power5+/fpu/s_modff.c: Include
19658 <libm-alias-float.h>.
19659 (modff): Define using libm_alias_float.
19660 * sysdeps/powerpc/power7/fpu/s_logbf.c: Include
19661 <libm-alias-float.h>.
19662 (logbf): Define using libm_alias_float.
19663 * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Include
19664 <libm-alias-float.h>.
19665 (ceilf): Define using libm_alias_float.
19666 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
19667 <libm-alias-float.h>.
19668 (copysignf): Define using libm_alias_float.
19669 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Include
19670 <libm-alias-float.h>.
19671 (floorf): Define using libm_alias_float.
19672 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Include
19673 <libm-alias-float.h>.
19674 (llrintf): Define using libm_alias_float.
19675 * sysdeps/powerpc/powerpc32/fpu/s_llroundf.c: Include
19676 <libm-alias-float.h>.
19677 (llroundf): Define using libm_alias_float.
19678 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
19679 <libm-alias-float.h>.
19680 (lrintf): Define using libm_alias_float.
19681 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
19682 <libm-alias-float.h>.
19683 (lroundf): Define using libm_alias_float.
19684 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: Include
19685 <libm-alias-float.h>.
19686 (nearbyintf): Define using libm_alias_float.
19687 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Include
19688 <libm-alias-float.h>.
19689 (rintf): Define using libm_alias_float.
19690 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Include
19691 <libm-alias-float.h>.
19692 (roundf): Define using libm_alias_float.
19693 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Include
19694 <libm-alias-float.h>.
19695 (truncf): Define using libm_alias_float.
19696 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c:
19697 Include <libm-alias-float.h>.
19698 (ceilf): Define using libm_alias_float.
19699 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
19700 Include <libm-alias-float.h>.
19701 (copysignf): Define using libm_alias_float.
19702 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c:
19703 Include <libm-alias-float.h>.
19704 (floorf): Define using libm_alias_float.
19705 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c:
19706 Include <libm-alias-float.h>.
19707 (llrintf): Define using libm_alias_float.
19708 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c:
19709 Include <libm-alias-float.h>.
19710 (llroundf): Define using libm_alias_float.
19711 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c:
19712 Include <libm-alias-float.h>.
19713 (logbf): Define using libm_alias_float.
19714 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c:
19715 Include <libm-alias-float.h>.
19716 (lrintf): Define using libm_alias_float.
19717 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c:
19718 Include <libm-alias-float.h>.
19719 (lroundf): Define using libm_alias_float.
19720 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c:
19721 Include <libm-alias-float.h>.
19722 (modff): Define using libm_alias_float.
19723 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c:
19724 Include <libm-alias-float.h>.
19725 (roundf): Define using libm_alias_float.
19726 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c:
19727 Include <libm-alias-float.h>.
19728 (truncf): Define using libm_alias_float.
19729 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Include
19730 <libm-alias-float.h>.
19731 (llrintf): Define using libm_alias_float.
19732 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
19733 <libm-alias-float.h>.
19734 (llroundf): Define using libm_alias_float.
19735 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: Include
19736 <libm-alias-float.h>.
19737 (ceilf): Define using libm_alias_float.
19738 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: Include
19739 <libm-alias-float.h>.
19740 (floorf): Define using libm_alias_float.
19741 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
19742 <libm-alias-float.h>.
19743 (llroundf): Define using libm_alias_float.
19744 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
19745 <libm-alias-float.h>.
19746 (lroundf): Define using libm_alias_float.
19747 * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: Include
19748 <libm-alias-float.h>.
19749 (roundf): Define using libm_alias_float.
19750 * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: Include
19751 <libm-alias-float.h>.
19752 (truncf): Define using libm_alias_float.
19753 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
19754 <libm-alias-float.h>.
19755 (copysignf): Define using libm_alias_float.
19756 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Include
19757 <libm-alias-float.h>.
19758 (llrintf): Define using libm_alias_float.
19759 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
19760 <libm-alias-float.h>.
19761 (llroundf): Define using libm_alias_float.
19762 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
19763 <libm-alias-float.h>.
19764 (lrintf): Define using libm_alias_float.
19765 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
19766 <libm-alias-float.h>.
19767 (lroundf): Define using libm_alias_float.
19768 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Include
19769 <libm-alias-float.h>.
19770 (ceilf): Define using libm_alias_float.
19771 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Include
19772 <libm-alias-float.h>.
19773 (copysignf): Define using libm_alias_float.
19774 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Include
19775 <libm-alias-float.h>.
19776 (cosf): Define using libm_alias_float.
19777 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Include
19778 <libm-alias-float.h>.
19779 (floorf): Define using libm_alias_float.
19780 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrintf.c: Include
19781 <libm-alias-float.h>.
19782 (llrintf): Define using libm_alias_float.
19783 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf.c: Include
19784 <libm-alias-float.h>.
19785 (llroundf): Define using libm_alias_float.
19786 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: Include
19787 <libm-alias-float.h>.
19788 (logbf): Define using libm_alias_float.
19789 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c: Include
19790 <libm-alias-float.h>.
19791 (modff): Define using libm_alias_float.
19792 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Include
19793 <libm-alias-float.h>.
19794 (roundf): Define using libm_alias_float.
19795 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Include
19796 <libm-alias-float.h>.
19797 (sinf): Define using libm_alias_float.
19798 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Include
19799 <libm-alias-float.h>.
19800 (truncf): Define using libm_alias_float.
19801 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Include
19802 <libm-alias-float.h>.
19803 (ceilf): Define using libm_alias_float.
19804 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
19805 <libm-alias-float.h>.
19806 (copysignf): Define using libm_alias_float.
19807 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Include
19808 <libm-alias-float.h>.
19809 (floorf): Define using libm_alias_float.
19810 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
19811 <libm-alias-float.h>.
19812 (llrintf): Define using libm_alias_float.
19813 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Include
19814 <libm-alias-float.h>.
19815 (llroundf): Define using libm_alias_float.
19816 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Include
19817 <libm-alias-float.h>.
19818 (nearbyintf): Define using libm_alias_float.
19819 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Include
19820 <libm-alias-float.h>.
19821 (rintf): Define using libm_alias_float.
19822 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Include
19823 <libm-alias-float.h>.
19824 (roundf): Define using libm_alias_float.
19825 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Include
19826 <libm-alias-float.h>.
19827 (truncf): Define using libm_alias_float.
19828 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: Include
19829 <libm-alias-float.h>.
19830 (ceilf): Define using libm_alias_float.
19831 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: Include
19832 <libm-alias-float.h>.
19833 (floorf): Define using libm_alias_float.
19834 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
19835 <libm-alias-float.h>.
19836 (llroundf): Define using libm_alias_float.
19837 * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: Include
19838 <libm-alias-float.h>.
19839 (roundf): Define using libm_alias_float.
19840 * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: Include
19841 <libm-alias-float.h>.
19842 (truncf): Define using libm_alias_float.
19843 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
19844 <libm-alias-float.h>.
19845 (copysignf): Define using libm_alias_float.
19846 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
19847 <libm-alias-float.h>.
19848 (llrintf): Define using libm_alias_float.
19849 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
19850 <libm-alias-float.h>.
19851 (llroundf): Define using libm_alias_float.
19852 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Include
19853 <libm-alias-float.h>.
19854 (cosf): Define using libm_alias_float.
19855 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
19856 <libm-alias-float.h>.
19857 (llrintf): Define using libm_alias_float.
19858 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
19859 <libm-alias-float.h>.
19860 (llroundf): Define using libm_alias_float.
19861 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Include
19862 <libm-alias-float.h>.
19863 (sinf): Define using libm_alias_float.
19864
19865 2017-12-04 Florian Weimer <fweimer@redhat.com>
19866
19867 * support/check.h (TEST_COMPARE): Define.
19868 (support_test_compare_failure): Declare.
19869 * support/Makefile (libsupport-routines): Add
19870 support_test_compare_failure.
19871 (tests): Add tst-test_compare.
19872 * support /support_test_compare_failure.c: New file.
19873 * support/tst-test_compare.c: Likewise.
19874
19875 2017-12-04 Mike FABIAN <mfabian@redhat.com>
19876
19877 [BZ #22527]
19878 * localedata/locales/tr_TR (LC_COLLATE): Base collation rules
19879 on iso14651_t1. A test file localedata/tr_TR.UTF-8.in is already
19880 available, this rewrite of the collation rules does reproduce
19881 the test file in the same order.
19882
19883 2017-12-04 Mike FABIAN <mfabian@redhat.com>
19884
19885 [BZ #10580]
19886 * localedata/locales/hr_HR (LC_TIME): Use two letters for the
19887 digraphs in the month and day names. Using single code points for
19888 digraphs is deprecated. While there are dedicated Unicode
19889 codepoints, for the digraphs, these are included for backwards
19890 compatibility and modern texts use a sequence of Basic Latin
19891 characters. See: https://www.unicode.org/faq/ligature_digraph.html
19892 This makes the month and day names agree exactly with CLDR now,
19893 CLDR does not use the single code points for the digraphs either.
19894
19895 2017-12-04 Chris Metcalf <cmetcalf@mellanox.com>
19896
19897 * sysdeps/tile/libm-test-ulps: Update ca{cos,sin,tan}{,h} ulps.
19898
19899 2017-12-04 Joseph Myers <joseph@codesourcery.com>
19900
19901 * sysdeps/ieee754/flt-32/s_sinf.c (SINF_FUNC): Use __floor instead
19902 of floor.
19903
19904 2017-12-04 Siddhesh Poyarekar <siddhesh@sourceware.org>
19905
19906 * sysdeps/aarch64/multiarch/memcpy_generic.S (__GI_memcpy):
19907 Define only for libc.so.
19908
19909 2017-12-04 Stefan Liebler <stli@linux.vnet.ibm.com>
19910
19911 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
19912 (INTERNAL_VSYSCALL_CALL, CLOBBER_0, CLOBBER_1, CLOBBER_2,
19913 CLOBBER_3, CLOBBER_4, CLOBBER_5, CLOBBER_6,
19914 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Remove.
19915 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
19916
19917 2017-12-04 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
19918
19919 [BZ #5997]
19920 * sysdeps/ieee754/flt-32/s_sinf.c: New implementation.
19921
19922 2017-12-02 John David Anglin <danglin@gcc.gnu.org>
19923
19924 [BZ libc/19170]
19925 * sysdeps/hppa/crti.S: Declare PREINIT_FUNCTION weak_extern when
19926 PREINIT_FUNCTION_WEAK is nonzero.
19927 (gmon_initializer): New function. Put procedure label for it in
19928 .init_array section.
19929 (_init): Don't call PREINIT_FUNCTION.
19930 * sysdeps/hppa/crtn.S (__gmon_start__): Remove.
19931 * sysdeps/hppa/dl-lookupcfg.h (DL_FIXUP_MAKE_VALUE): Create null fixup
19932 value when map argument is null.
19933
19934 * sysdeps/hppa/dl-fptr.c (elf_machine_resolve): Remove unnecessary
19935 depi instruction from PIC pc-relative sequence.
19936 * sysdeps/hppa/dl-fptr.h (ELF_MACHINE_LOAD_ADDRESS): Likewise.
19937 * sysdeps/hppa/dl-machine.h (elf_machine_dynamic): Likewise.
19938 (elf_machine_load_address): Likewise.
19939 (elf_machine_runtime_setup): Likewise.
19940
19941 2017-12-02 Joseph Myers <joseph@codesourcery.com>
19942
19943 * sysdeps/powerpc/power7/fpu/s_logb.c: Include
19944 <libm-alias-double.h>.
19945 (logb): Define using libm_alias_double.
19946 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
19947 <libm-alias-double.h>.
19948 (copysign): Define using libm_alias_double.
19949 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c: Include
19950 <libm-alias-double.h>.
19951 (llrint): Define using libm_alias_double.
19952 * sysdeps/powerpc/powerpc32/fpu/s_llround.c: Include
19953 <libm-alias-double.h>.
19954 (llround): Define using libm_alias_double.
19955 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
19956 <libm-alias-double.h>.
19957 (lrint): Define using libm_alias_double.
19958 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
19959 <libm-alias-double.h>.
19960 (lround): Define using libm_alias_double.
19961 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
19962 Include <libm-alias-double.h>.
19963 (copysign): Define using libm_alias_double.
19964 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c:
19965 Include <libm-alias-double.h>.
19966 (llrint): Define using libm_alias_double.
19967 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c:
19968 Include <libm-alias-double.h>.
19969 (llround): Define using libm_alias_double.
19970 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: Include
19971 <libm-alias-double.h>.
19972 (logb): Define using libm_alias_double.
19973 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c:
19974 Include <libm-alias-double.h>.
19975 (lrint): Define using libm_alias_double.
19976 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c:
19977 Include <libm-alias-double.h>.
19978 (lround): Define using libm_alias_double.
19979 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Include
19980 <libm-alias-double.h>.
19981 (llrint): Define using libm_alias_double.
19982 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
19983 <libm-alias-double.h>.
19984 (llround): Define using libm_alias_double.
19985 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
19986 <libm-alias-double.h>.
19987 (llround): Define using libm_alias_double.
19988 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
19989 <libm-alias-double.h>.
19990 (lround): Define using libm_alias_double.
19991 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
19992 <libm-alias-double.h>.
19993 (copysign): Define using libm_alias_double.
19994 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Include
19995 <libm-alias-double.h>.
19996 (llrint): Define using libm_alias_double.
19997 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
19998 <libm-alias-double.h>.
19999 (llround): Define using libm_alias_double.
20000 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
20001 <libm-alias-double.h>.
20002 (lrint): Define using libm_alias_double.
20003 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
20004 <libm-alias-double.h>.
20005 (lround): Define using libm_alias_double.
20006 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Include
20007 <libm-alias-double.h>.
20008 (copysign): Define using libm_alias_double.
20009 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: Include
20010 <libm-alias-double.h>.
20011 (llrint): Define using libm_alias_double.
20012 (lrint): Likewise.
20013 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: Include
20014 <libm-alias-double.h>.
20015 (llround): Define using libm_alias_double.
20016 (lround): Likewise.
20017 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: Include
20018 <libm-alias-double.h>.
20019 (logb): Define using libm_alias_double.
20020 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
20021 <libm-alias-double.h>.
20022 (copysign): Define using libm_alias_double.
20023 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
20024 <libm-alias-double.h>.
20025 (llrint): Define using libm_alias_double.
20026 (lrint): Likewise.
20027 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Include
20028 <libm-alias-double.h>.
20029 (llround): Define using libm_alias_double.
20030 (lround): Likewise.
20031 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
20032 <libm-alias-double.h>.
20033 (llround): Define using libm_alias_double.
20034 (lround): Likewise.
20035 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
20036 <libm-alias-double.h>.
20037 (copysign): Define using libm_alias_double.
20038 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
20039 <libm-alias-double.h>.
20040 (llrint): Define using libm_alias_double.
20041 (lrint): Likewise.
20042 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
20043 <libm-alias-double.h>.
20044 (llround): Define using libm_alias_double.
20045 (lround): Likewise.
20046 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
20047 <libm-alias-double.h>.
20048 (llrint): Define using libm_alias_double.
20049 (lrint): Likewise.
20050 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
20051 <libm-alias-double.h>.
20052 (llround): Define using libm_alias_double.
20053 (lround): Likewise.
20054
20055 2017-12-01 Joseph Myers <joseph@codesourcery.com>
20056
20057 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
20058 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (lroundl): Do not define
20059 compat symbol based on llround.
20060
20061 * sysdeps/powerpc/power7/fpu/s_logb.c
20062 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Define as compat
20063 symbol based on __logb, not on logb.
20064 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c
20065 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
20066 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c
20067 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
20068
20069 * sysdeps/powerpc/fpu/s_rint.c: Include <libm-alias-double.h>.
20070 (rint): Define using libm_alias_double.
20071 * sysdeps/powerpc/power5+/fpu/s_modf.c: Include
20072 <libm-alias-double.h>.
20073 (modf): Define using libm_alias_double.
20074 * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Include
20075 <libm-alias-double.h>.
20076 (ceil): Define using libm_alias_double.
20077 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Include
20078 <libm-alias-double.h>.
20079 (floor): Define using libm_alias_double.
20080 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: Include
20081 <libm-alias-double.h>.
20082 (nearbyint): Define using libm_alias_double.
20083 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Include
20084 <libm-alias-double.h>.
20085 (rint): Define using libm_alias_double.
20086 * sysdeps/powerpc/powerpc32/fpu/s_round.S: Include
20087 <libm-alias-double.h>.
20088 (round): Define using libm_alias_double.
20089 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Include
20090 <libm-alias-double.h>.
20091 (trunc): Define using libm_alias_double.
20092 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Include
20093 <libm-alias-double.h>.
20094 (ceil): Define using libm_alias_double.
20095 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c:
20096 Include <libm-alias-double.h>.
20097 (floor): Define using libm_alias_double.
20098 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: Include
20099 <libm-alias-double.h>.
20100 (modf): Define using libm_alias_double.
20101 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c:
20102 Include <libm-alias-double.h>.
20103 (round): Define using libm_alias_double.
20104 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c:
20105 Include <libm-alias-double.h>.
20106 (trunc): Define using libm_alias_double.
20107 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: Include
20108 <libm-alias-double.h>.
20109 (ceil): Define using libm_alias_double.
20110 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: Include
20111 <libm-alias-double.h>.
20112 (floor): Define using libm_alias_double.
20113 * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: Include
20114 <libm-alias-double.h>.
20115 (round): Define using libm_alias_double.
20116 * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: Include
20117 <libm-alias-double.h>.
20118 (trunc): Define using libm_alias_double.
20119 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Include
20120 <libm-alias-double.h>.
20121 (ceil): Define using libm_alias_double.
20122 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Include
20123 <libm-alias-double.h>.
20124 (floor): Define using libm_alias_double.
20125 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Include
20126 <libm-alias-double.h>.
20127 (modf): Define using libm_alias_double.
20128 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Include
20129 <libm-alias-double.h>.
20130 (round): Define using libm_alias_double.
20131 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Include
20132 <libm-alias-double.h>.
20133 (trunc): Define using libm_alias_double.
20134 * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Include
20135 <libm-alias-double.h>.
20136 (ceil): Define using libm_alias_double.
20137 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Include
20138 <libm-alias-double.h>.
20139 (floor): Define using libm_alias_double.
20140 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: Include
20141 <libm-alias-double.h>.
20142 (nearbyint): Define using libm_alias_double.
20143 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Include
20144 <libm-alias-double.h>.
20145 (rint): Define using libm_alias_double.
20146 * sysdeps/powerpc/powerpc64/fpu/s_round.S: Include
20147 <libm-alias-double.h>.
20148 (round): Define using libm_alias_double.
20149 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Include
20150 <libm-alias-double.h>.
20151 (trunc): Define using libm_alias_double.
20152 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: Include
20153 <libm-alias-double.h>.
20154 (ceil): Define using libm_alias_double.
20155 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: Include
20156 <libm-alias-double.h>.
20157 (floor): Define using libm_alias_double.
20158 * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: Include
20159 <libm-alias-double.h>.
20160 (round): Define using libm_alias_double.
20161 * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: Include
20162 <libm-alias-double.h>.
20163 (trunc): Define using libm_alias_double.
20164
20165 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-double.h>.
20166 (fabs): Define using libm_alias_double.
20167 * sysdeps/powerpc/fpu/s_fma.S: Include <libm-alias-double.h>.
20168 (fma): Define using libm_alias_double.
20169 * sysdeps/powerpc/powerpc32/fpu/s_fabs.S: Remove file.
20170 * sysdeps/powerpc/powerpc32/fpu/s_fma.S: Likewise.
20171 * sysdeps/powerpc/powerpc64/fpu/s_fabs.S: Likewise.
20172 * sysdeps/powerpc/powerpc64/fpu/s_fma.S: Likewise.
20173
20174 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20175
20176 * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Remove file.
20177
20178 * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC_DFLT,
20179 SPARC_ASM_IFUNC1, SPARC_ASM_IFUNC2, SET, SPARC_ASM_VIS2_IFUNC,
20180 SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
20181
20182 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Fix build
20183 due redirect macro.
20184
20185 2017-12-01 Andreas Schwab <schwab@linux-m68k.org>
20186
20187 * intl/Makefile ($(objpfx)plural.c): Add $(make-target-directory).
20188
20189 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20190
20191 * sysdeps/sparc/sparc64/cpu_relax.c: New file.
20192 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.c: Likewise.
20193 * sysdeps/sparc/sparc64/cpu_relax.S: Remove file.
20194 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Likewise.
20195
20196 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20197 (libm-sysdep_routines): Add s_nearbyintf-generic and
20198 s_nearbyint-generic.
20199 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-generic.S:
20200 New file.
20201 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.c: Likewise.
20202 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-generic.S:
20203 Likewise.
20204 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.c:
20205 Likewise.
20206 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: Remove
20207 file.
20208 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
20209 Likewise.
20210
20211 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20212 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic.
20213 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-generic.S: New
20214 file.
20215 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
20216 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-generic.S:
20217 Likewise.
20218 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
20219 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Remove file.
20220 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
20221
20222 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20223 (libm-sysdep_routines): Add s_llrintf-generic and s_llrint-generic.
20224 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-generic.S: New
20225 file.
20226 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.c: Likewise.
20227 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-generic.S:
20228 Likewise.
20229 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.c: Likewise.
20230 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Remove file.
20231 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Likewise.
20232
20233 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20234 (libm-sysdep_routines): Add s_fabsf-generic and s_fabs-generic.
20235 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-generic.S: New
20236 file.
20237 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.c: Likewise.
20238 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-generic.S:
20239 Likewise.
20240 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.c: Likewise.
20241 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Remove file.
20242 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
20243
20244 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20245 (sysdep_calls): New rule.
20246 (sysdep_routines): Use sysdep_calls as base.
20247 (libm-sysdep_routines): Add generic rule for symbols shared with
20248 libc. Add s_copysign-generic and s_copysign-generic objects.
20249 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-generic.S:
20250 New file.
20251 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Likewise.
20252 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-generic.S:
20253 Likewise.
20254 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c: Likewise.
20255 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: Remove file.
20256 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: Likewise.
20257
20258 2017-12-01 Mike FABIAN <mfabian@redhat.com>
20259
20260 [BZ #22519]
20261 * localedata/Makefile: Add is_IS.UTF-8 to test-input and to
20262 the list of locales to be built for testing.
20263 * localedata/is_IS.UTF-8.in: New file.
20264 * localedata/locales/is_IS (LC_COLLATE): Base collation rules
20265 on iso14651_t1.
20266
20267 2017-12-01 Joseph Myers <joseph@codesourcery.com>
20268
20269 * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include
20270 <libm-alias-float.h>.
20271 (fabsf): Define using libm_alias_float.
20272
20273 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
20274
20275 * sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN.
20276
20277 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20278
20279 * sysdeps/m68k/coldfire/fpu/s_fabsf.c: Include
20280 <libm-alias-float.h>.
20281 (fabsf): Define using libm_alias_float.
20282 * sysdeps/m68k/coldfire/fpu/s_lrintf.c: Include
20283 <libm-alias-float.h>.
20284 (lrintf): Define using libm_alias_float.
20285 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Include
20286 <libm-alias-float.h>.
20287 (rintf): Define using libm_alias_float.
20288
20289 * sysdeps/m68k/coldfire/fpu/s_fabs.c: Include
20290 <libm-alias-double.h>.
20291 (fabs): Define using libm_alias_double.
20292 * sysdeps/m68k/coldfire/fpu/s_lrint.c: Include
20293 <libm-alias-double.h>.
20294 (lrint): Define using libm_alias_double.
20295 * sysdeps/m68k/coldfire/fpu/s_rint.c: Include
20296 <libm-alias-double.h>.
20297 (rint): Define using libm_alias_double.
20298
20299 * sysdeps/m68k/m680x0/fpu/s_atan_template.c: New file.
20300 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
20301 * sysdeps/m68k/m680x0/fpu/s_cos_template.c: Likewise.
20302 * sysdeps/m68k/m680x0/fpu/s_expm1_template.c: Likewise.
20303 * sysdeps/m68k/m680x0/fpu/s_fabs_template.c: Likewise.
20304 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
20305 * sysdeps/m68k/m680x0/fpu/s_frexp_template.c: Likewise.
20306 * sysdeps/m68k/m680x0/fpu/s_lrint_template.c: Likewise.
20307 * sysdeps/m68k/m680x0/fpu/s_modf_template.c: Likewise.
20308 * sysdeps/m68k/m680x0/fpu/s_nearbyint_template.c: Likewise.
20309 * sysdeps/m68k/m680x0/fpu/s_remquo_template.c: Likewise.
20310 * sysdeps/m68k/m680x0/fpu/s_rint_template.c: Likewise.
20311 * sysdeps/m68k/m680x0/fpu/s_sin_template.c: Likewise.
20312 * sysdeps/m68k/m680x0/fpu/s_sincos_template.c: Likewise.
20313 * sysdeps/m68k/m680x0/fpu/s_tan_template.c: Likewise.
20314 * sysdeps/m68k/m680x0/fpu/s_tanh_template.c: Likewise.
20315 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
20316 * sysdeps/m68k/m680x0/fpu/s_atan.c: Reimplement to use
20317 s_atan_template.c.
20318 * sysdeps/m68k/m680x0/fpu/s_atanf.c: Likewise.
20319 * sysdeps/m68k/m680x0/fpu/s_atanl.c: Likewise.
20320 * sysdeps/m68k/m680x0/fpu/s_ceil.c: Reimplement to use
20321 s_ceil_template.c.
20322 * sysdeps/m68k/m680x0/fpu/s_ceilf.c: Likewise.
20323 * sysdeps/m68k/m680x0/fpu/s_ceill.c: Likewise.
20324 * sysdeps/m68k/m680x0/fpu/s_cos.c: Reimplement to use
20325 s_cos_template.c.
20326 * sysdeps/m68k/m680x0/fpu/s_cosf.c: Likewise.
20327 * sysdeps/m68k/m680x0/fpu/s_cosl.c: Likewise.
20328 * sysdeps/m68k/m680x0/fpu/s_expm1.c: Reimplement to use
20329 s_expm1_template.c.
20330 * sysdeps/m68k/m680x0/fpu/s_expm1f.c: Likewise.
20331 * sysdeps/m68k/m680x0/fpu/s_expm1l.c: Likewise.
20332 * sysdeps/m68k/m680x0/fpu/s_fabs.c: Reimplement to use
20333 s_fabs_template.c.
20334 * sysdeps/m68k/m680x0/fpu/s_fabsf.c: Likewise.
20335 * sysdeps/m68k/m680x0/fpu/s_fabsl.c: Likewise.
20336 * sysdeps/m68k/m680x0/fpu/s_floor.c: Reimplement to use
20337 s_floor_template.c.
20338 * sysdeps/m68k/m680x0/fpu/s_floorf.c: Likewise.
20339 * sysdeps/m68k/m680x0/fpu/s_floorl.c: Likewise.
20340 * sysdeps/m68k/m680x0/fpu/s_frexp.c: Reimplement to use
20341 s_frexp_template.c.
20342 * sysdeps/m68k/m680x0/fpu/s_frexpf.c: Likewise.
20343 * sysdeps/m68k/m680x0/fpu/s_lrint.c: Reimplement to use
20344 s_lrint_template.c.
20345 * sysdeps/m68k/m680x0/fpu/s_lrintf.c: Likewise.
20346 * sysdeps/m68k/m680x0/fpu/s_lrintl.c: Likewise.
20347 * sysdeps/m68k/m680x0/fpu/s_modf.c: Reimplement to use
20348 s_modf_template.c.
20349 * sysdeps/m68k/m680x0/fpu/s_modff.c: Likewise.
20350 * sysdeps/m68k/m680x0/fpu/s_modfl.c: Likewise.
20351 * sysdeps/m68k/m680x0/fpu/s_nearbyint.c: Reimplement to use
20352 s_nearbyint_template.c.
20353 * sysdeps/m68k/m680x0/fpu/s_nearbyintf.c: Likewise.
20354 * sysdeps/m68k/m680x0/fpu/s_nearbyintl.c: Likewise.
20355 * sysdeps/m68k/m680x0/fpu/s_remquo.c: Reimplement to use
20356 s_remquo_template.c.
20357 * sysdeps/m68k/m680x0/fpu/s_remquof.c: Likewise.
20358 * sysdeps/m68k/m680x0/fpu/s_remquol.c: Likewise.
20359 * sysdeps/m68k/m680x0/fpu/s_rint.c: Reimplement to use
20360 s_rint_template.c.
20361 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
20362 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
20363 * sysdeps/m68k/m680x0/fpu/s_sin.c: Reimplement to use
20364 s_sin_template.c.
20365 * sysdeps/m68k/m680x0/fpu/s_sinf.c: Likewise.
20366 * sysdeps/m68k/m680x0/fpu/s_sinl.c: Likewise.
20367 * sysdeps/m68k/m680x0/fpu/s_sincos.c: Reimplement to use
20368 s_sincos_template.c.
20369 * sysdeps/m68k/m680x0/fpu/s_sincosf.c: Likewise.
20370 * sysdeps/m68k/m680x0/fpu/s_sincosl.c: Likewise.
20371 * sysdeps/m68k/m680x0/fpu/s_tan.c: Reimplement to use
20372 s_tan_template.c.
20373 * sysdeps/m68k/m680x0/fpu/s_tanf.c: Likewise.
20374 * sysdeps/m68k/m680x0/fpu/s_tanl.c: Likewise.
20375 * sysdeps/m68k/m680x0/fpu/s_tanh.c: Reimplement to use
20376 s_tanh_template.c.
20377 * sysdeps/m68k/m680x0/fpu/s_tanhf.c: Likewise.
20378 * sysdeps/m68k/m680x0/fpu/s_tanhl.c: Likewise.
20379 * sysdeps/m68k/m680x0/fpu/s_trunc.c: Reimplement to use
20380 s_trunc_template.c.
20381 * sysdeps/m68k/m680x0/fpu/s_truncf.c: Likewise.
20382 * sysdeps/m68k/m680x0/fpu/s_truncl.c: Likewise.
20383 * sysdeps/m68k/m680x0/fpu/s_significand.c: Reimplement based on
20384 s_atan.c instead of including s_atan.c.
20385 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Reimplement based on
20386 s_atanf.c instead of including s_atanf.c.
20387 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Reimplement based on
20388 s_atanl.c instead of including s_atanl.c.
20389 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Include s_significand.c
20390 instead of s_atan.c.
20391 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_significandf.c
20392 instead of s_atanf.c.
20393 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Include s_significandl.c
20394 instead of s_atanl.c.
20395
20396 * scripts/update-copyrights: Do not handle intl/plural.c
20397 specially.
20398
20399 2017-11-30 Juro Bystricky <juro.bystricky@linux.intel.com>
20400
20401 [BZ #22432]
20402 * configure.ac (BISON): Require to be present.
20403 * configure: Regenerated.
20404 * intl/Makefile (generated): Add plural.c.
20405 [$(BISON) != no]: Make code unconditional.
20406 (plural.c): Change rule to $(objpfx)plural.c.
20407 ($(objpfx)plural.o): Depend on $(objpfx)plural.c.
20408 * intl/plural.c: Remove.
20409 * manual/install.texi (Tools for Compilation): Document bison as
20410 required.
20411 * INSTALL: Regenerated.
20412
20413 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20414
20415 * sysdeps/m68k/m680x0/fpu/s_llrint.c: Include
20416 <libm-alias-double.h>.
20417 (llrint): Define using libm_alias_double.
20418 * sysdeps/m68k/m680x0/fpu/s_llrintf.c: Include
20419 <libm-alias-float.h>.
20420 (llrintf): Define using libm_alias_float.
20421 * sysdeps/m68k/m680x0/fpu/s_llrintl.c: Include
20422 <libm-alias-ldouble.h>.
20423 (llrintl): Define using libm_alias_ldouble.
20424
20425 * sysdeps/m68k/m680x0/fpu/s_ccosh_template.c (ccosh): Use
20426 declare_mgen_alias instead of weak_alias.
20427 * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (cexp): Likewise.
20428 * sysdeps/m68k/m680x0/fpu/s_csin_template.c (csin): Likewise.
20429 * sysdeps/m68k/m680x0/fpu/s_csinh_template.c (csinh): Likewise.
20430
20431 2017-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20432
20433 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20434 Add add_n-generic.
20435 * sysdeps/sparc/sparc64/multiarch/add_n-generic.S: New file.
20436 * sysdeps/sparc/sparc64/multiarch/add_n.c: Likewise.
20437 * sysdeps/sparc/sparc64/multiarch/add_n.S: Remove file.
20438
20439 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20440 Add submul_1-generic.
20441 * sysdeps/sparc/sparc64/multiarch/submul_1-generic.S: New file.
20442 * sysdeps/sparc/sparc64/multiarch/submul_1.c: Likewise.
20443 * sysdeps/sparc/sparc64/multiarch/submul_1.S: Remove file.
20444
20445 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20446 Add addmul_1-generic.
20447 * sysdeps/sparc/sparc64/multiarch/addmul_1-generic.S: New file.
20448 * sysdeps/sparc/sparc64/multiarch/addmul_1.c: Likewise.
20449 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Remove file.
20450
20451 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20452 Add sub_n-generic.
20453 * sysdeps/sparc/sparc64/multiarch/sub_n-generic.S: New file.
20454 * sysdeps/sparc/sparc64/multiarch/sub_n.c: Likewise.
20455 * sysdeps/sparc/sparc64/multiarch/sub_n.S: Remove file.
20456
20457 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20458 Add mul_1-generic.
20459 * sysdeps/sparc/sparc64/multiarch/mul_1-generic.S: New file.
20460 * sysdeps/sparc/sparc64/multiarch/mul_1.c: Likewise.
20461 * sysdeps/sparc/sparc64/multiarch/mul_1.S: Remove file.
20462
20463 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20464
20465 According to CLDR, collation rules for Serbian and Bosnian
20466 should be the same as for Croatian.
20467
20468 [BZ #22534]
20469 * localedata/Makefile: Add sr_RS.UTF-8 and bs_BA.UTF-8 to test-input
20470 and to the list of locales to be built for testing.
20471 * localedata/bs_BA.UTF-8.in: New file (same as hr_HR.UTF-8.in).
20472 * localedata/sr_RS.UTF-8.in: New file (same as hr_HR.UTF-8.in).
20473 * localedata/locales/bs_BA (LC_COLLATE): Use “copy "hr_HR"”.
20474 * localedata/locales/sr_RS (LC_COLLATE): Use “copy "hr_HR"”.
20475
20476 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20477
20478 * localedata/locales/hr_HR (LC_COLLATE): Fix collation
20479 to make test case pass.
20480 * localedata/hr_HR.UTF-8.in: Add more test strings.
20481
20482 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20483
20484 * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580]
20485
20486 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
20487
20488 * localedata/Makefile: Add hr_HR.UTF-8 to test-input and to
20489 the list of locales to built for testing.
20490 * localedata/hr_HR.UTF-8.in: New file.
20491
20492 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
20493
20494 [BZ #10580]
20495 * localedata/locales/hr_HR (LC_COLLATE): Base collation rules on
20496 iso14651_t1.
20497 * localedata/locales/hr_HR (LC_TIME): Sync month and day names with
20498 CLDR (except use ligatures for the digraphs, CLDR does not use
20499 the ligatures), add first_workday, some fixes in the date and time
20500 formats.
20501 * localedata/locales/hr_HR (LC_CTYPE): Add transliteration rules
20502 for Đ and đ.
20503 * localedata/locales/hr_HR (LC_MONETARY): Change currency_symbol to
20504 lower case. p_cs_precedes and n_cs_precedes should be 0 instead of 1.
20505 Add int_p_cs_precedes and int_n_cs_precedes.
20506 * localedata/locales/hr_HR (LC_NUMERIC): Change thousands_sep to
20507 "<U202F>" (NARROW NO-BREAK SPACE) and grouping to 3;3 (Agrees with
20508 LC_MONETARY now).
20509 * localedata/locales/hr_HR (LC_TELEPHONE): Add tel_dom_fmt.
20510 * localedata/locales/hr_HR (LC_NAME): Add name_mr, name_mrs, and
20511 name_miss.
20512 * localedata/locales/hr_HR (LC_ADDRESS): Add country_post, country_isbn,
20513 and lang_lib. Change postal_fmt.
20514
20515 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
20516
20517 * debug/longjmp_chk.c: Include <setjmpP.h> instead of
20518 <setjmp.h>.
20519 * setjmp/longjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
20520 (__libc_siglongjmp): Cast &env[0].__saved_mask to "sigset_t *".
20521 * setjmp/sigjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
20522 (__sigjmp_save): Cast &env[0].__saved_mask to "sigset_t *".
20523 * sysdeps/generic/setjmpP.h: New file.
20524 * sysdeps/unix/sysv/linux/x86/jmp_buf-ssp.sym: Likewise.
20525 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Likewise.
20526 * sysdeps/unix/sysv/linux/x86/tst-saved_mask-1.c: Likewise.
20527 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
20528 Add jmp_buf-ssp.sym.
20529 (tests): Add tst-saved_mask-1.
20530
20531 2017-11-30 Arjun Shankar <arjun@redhat.com>
20532
20533 [BZ #22375]
20534 CVE-2017-17426
20535 * malloc/malloc.c (__libc_malloc): Use checked_request2size
20536 instead of request2size.
20537
20538 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20539
20540 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S
20541 (__lllrint): Remove alias.
20542 (lllrint): Likewise.
20543 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S
20544 (__lllrintf): Likewise.
20545 (lllrintf): Likewise.
20546
20547 * sysdeps/sparc/sparc32/fpu/s_copysignf.S: Include
20548 <libm-alias-float.h>.
20549 (copysignf): Define using libm_alias_float.
20550 * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Include
20551 <libm-alias-float.h>.
20552 (fabsf): Define using libm_alias_float.
20553 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
20554 Include <libm-alias-float.h>.
20555 (copysignf): Define using libm_alias_float.
20556 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Include
20557 <libm-alias-float.h>.
20558 (fabsf): Define using libm_alias_float.
20559 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Include
20560 <libm-alias-float.h>.
20561 (fdimf): Define using libm_alias_float.
20562 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Include
20563 <libm-alias-float.h>.
20564 (fmaf): Define using libm_alias_float.
20565 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Include
20566 <libm-alias-float.h>.
20567 (llrintf): Define using libm_alias_float.
20568 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
20569 Include <libm-alias-float.h>.
20570 (nearbyintf): Define using libm_alias_float.
20571 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Include
20572 <libm-alias-float.h>.
20573 (rintf): Define using libm_alias_float.
20574 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: Include
20575 <libm-alias-float.h>.
20576 (llrintf): Define using libm_alias_float.
20577 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: Include
20578 <libm-alias-float.h>.
20579 (lrintf): Define using libm_alias_float.
20580 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: Include
20581 <libm-alias-float.h>.
20582 (nearbyintf): Define using libm_alias_float.
20583 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Include
20584 <libm-alias-float.h>.
20585 (rintf): Define using libm_alias_float.
20586 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Include
20587 <libm-alias-float.h>.
20588 (ceilf): Define using libm_alias_float.
20589 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Include
20590 <libm-alias-float.h>.
20591 (floorf): Define using libm_alias_float.
20592 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Include
20593 <libm-alias-float.h>.
20594 (fmaf): Define using libm_alias_float.
20595 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Include
20596 <libm-alias-float.h>.
20597 (lrintf): Define using libm_alias_float.
20598 (llrintf): Likewise.
20599 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Include
20600 <libm-alias-float.h>.
20601 (nearbyintf): Define using libm_alias_float.
20602 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Include
20603 <libm-alias-float.h>.
20604 (rintf): Define using libm_alias_float.
20605 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Include
20606 <libm-alias-float.h>.
20607 (truncf): Define using libm_alias_float.
20608 * sysdeps/sparc/sparc64/fpu/s_copysignf.S: Include
20609 <libm-alias-float.h>.
20610 (copysignf): Define using libm_alias_float.
20611 * sysdeps/sparc/sparc64/fpu/s_fabsf.c: Include
20612 <libm-alias-float.h>.
20613 (fabsf): Define using libm_alias_float.
20614 * sysdeps/sparc/sparc64/fpu/s_lrintf.S: Include
20615 <libm-alias-float.h>.
20616 (lrintf): Define using libm_alias_float.
20617 (llrintf): Likewise.
20618 * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: Include
20619 <libm-alias-float.h>.
20620 (nearbyintf): Define using libm_alias_float.
20621 * sysdeps/sparc/sparc64/fpu/s_rintf.S: Include
20622 <libm-alias-float.h>.
20623 (rintf): Define using libm_alias_float.
20624
20625 2017-11-29 Joseph Myers <joseph@codesourcery.com>
20626
20627 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
20628 <libm-alias-double.h>.
20629 (copysign): Define using libm_alias_double.
20630 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include
20631 <libm-alias-double.h>.
20632 (fabs): Define using libm_alias_double.
20633 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
20634 Include <libm-alias-double.h>.
20635 (copysign): Define using libm_alias_double.
20636 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
20637 <libm-alias-double.h>.
20638 (fabs): Define using libm_alias_double.
20639 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Include
20640 <libm-alias-double.h>.
20641 (fdim): Define using libm_alias_double.
20642 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Include
20643 <libm-alias-double.h>.
20644 (fma): Define using libm_alias_double.
20645 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Include
20646 <libm-alias-double.h>.
20647 (llrint): Define using libm_alias_double.
20648 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S:
20649 Include <libm-alias-double.h>.
20650 (nearbyint): Define using libm_alias_double.
20651 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Include
20652 <libm-alias-double.h>.
20653 (rint): Define using libm_alias_double.
20654 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
20655 <libm-alias-double.h>.
20656 (fabs): Define using libm_alias_double.
20657 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Include
20658 <libm-alias-double.h>.
20659 (llrint): Define using libm_alias_double.
20660 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: Include
20661 <libm-alias-double.h>.
20662 (nearbyint): Define using libm_alias_double.
20663 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Include
20664 <libm-alias-double.h>.
20665 (rint): Define using libm_alias_double.
20666 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Include
20667 <libm-alias-double.h>.
20668 (ceil): Define using libm_alias_double.
20669 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Include
20670 <libm-alias-double.h>.
20671 (floor): Define using libm_alias_double.
20672 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Include
20673 <libm-alias-double.h>.
20674 (fma): Define using libm_alias_double.
20675 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Include
20676 <libm-alias-double.h>.
20677 (lrint): Define using libm_alias_double.
20678 (llrint): Likewise.
20679 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Include
20680 <libm-alias-double.h>.
20681 (nearbyint): Define using libm_alias_double.
20682 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Include
20683 <libm-alias-double.h>.
20684 (rint): Define using libm_alias_double.
20685 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Include
20686 <libm-alias-double.h>.
20687 (trunc): Define using libm_alias_double.
20688 * sysdeps/sparc/sparc64/fpu/s_copysign.S: Include
20689 <libm-alias-double.h>.
20690 (copysign): Define using libm_alias_double.
20691 * sysdeps/sparc/sparc64/fpu/s_fabs.c: Include
20692 <libm-alias-double.h>.
20693 (fabs): Define using libm_alias_double.
20694 * sysdeps/sparc/sparc64/fpu/s_lrint.S: Include
20695 <libm-alias-double.h>.
20696 (lrint): Define using libm_alias_double.
20697 (llrint): Likewise.
20698 * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: Include
20699 <libm-alias-double.h>.
20700 (nearbyint): Define using libm_alias_double.
20701 * sysdeps/sparc/sparc64/fpu/s_rint.S: Include
20702 <libm-alias-double.h>.
20703 (rint): Define using libm_alias_double.
20704
20705 [BZ #22229]
20706 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
20707 <math_ldbl_opt.h>.
20708 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
20709
20710 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
20711 SPARC --disable-multi-arch glibc variants.
20712
20713 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Include
20714 <libm-alias-float.h>.
20715 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20716 if [SHARED].
20717 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Include
20718 <libm-alias-float.h>.
20719 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20720 if [SHARED].
20721 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Include
20722 <libm-alias-float.h>.
20723 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20724 if [SHARED].
20725 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Include
20726 <libm-alias-float.h>.
20727 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20728 if [SHARED].
20729 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Include
20730 <libm-alias-float.h>.
20731 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20732 if [SHARED].
20733 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Include
20734 <libm-alias-float.h>.
20735 (ceilf): Define using libm_alias_float.
20736 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Include
20737 <libm-alias-float.h>.
20738 (floorf): Define using libm_alias_float.
20739 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Include
20740 <libm-alias-float.h>.
20741 (fmaf): Define using libm_alias_float.
20742 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Include
20743 <libm-alias-float.h>.
20744 (nearbyintf): Define using libm_alias_float.
20745 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Include
20746 <libm-alias-float.h>.
20747 (rintf): Define using libm_alias_float.
20748 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Include
20749 <libm-alias-float.h>.
20750 (truncf): Define using libm_alias_float.
20751 * sysdeps/x86_64/fpu/s_copysignf.S: Include <libm-alias-float.h>.
20752 (copysignf): Define using libm_alias_float.
20753 * sysdeps/x86_64/fpu/s_cosf.S: Include <libm-alias-float.h>.
20754 (cosf): Define using libm_alias_float.
20755 * sysdeps/x86_64/fpu/s_fabsf.c: Include <libm-alias-float.h>.
20756 (fabsf): Define using libm_alias_float.
20757 * sysdeps/x86_64/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
20758 (fmaxf): Define using libm_alias_float.
20759 * sysdeps/x86_64/fpu/s_fminf.S: Include <libm-alias-float.h>.
20760 (fminf): Define using libm_alias_float.
20761 * sysdeps/x86_64/fpu/s_llrintf.S: Include <libm-alias-float.h>.
20762 (llrintf): Define using libm_alias_float.
20763 [!__ILP32__] (lrintf): Likewise.
20764 * sysdeps/x86_64/fpu/s_sincosf.S: Include <libm-alias-float.h>.
20765 (sincosf): Define using libm_alias_float.
20766 * sysdeps/x86_64/fpu/s_sinf.S: Include <libm-alias-float.h>.
20767 (sinf): Define using libm_alias_float.
20768 * sysdeps/x86_64/x32/fpu/s_lrintf.S: Include <libm-alias-float.h>.
20769 (lrintf): Define using libm_alias_float.
20770
20771 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Include
20772 <libm-alias-double.h>.
20773 (atan): Define using libm_alias_double.
20774 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Include
20775 <libm-alias-double.h>.
20776 (ceil): Define using libm_alias_double.
20777 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Include
20778 <libm-alias-double.h>.
20779 (floor): Define using libm_alias_double.
20780 * sysdeps/x86_64/fpu/multiarch/s_fma.c: Include
20781 <libm-alias-double.h>.
20782 (fma): Define using libm_alias_double.
20783 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Include
20784 <libm-alias-double.h>.
20785 (nearbyint): Define using libm_alias_double.
20786 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Include
20787 <libm-alias-double.h>.
20788 (rint): Define using libm_alias_double.
20789 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Include
20790 <libm-alias-double.h>.
20791 (sin): Define using libm_alias_double.
20792 (cos): Likewise.
20793 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Include
20794 <libm-alias-double.h>.
20795 (tan): Define using libm_alias_double.
20796 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Include
20797 <libm-alias-double.h>.
20798 (trunc): Define using libm_alias_double.
20799 * sysdeps/x86_64/fpu/s_copysign.S: Include <libm-alias-double.h>.
20800 (copysign): Define using libm_alias_double.
20801 * sysdeps/x86_64/fpu/s_fabs.c: Include <libm-alias-double.h>.
20802 (fabs): Define using libm_alias_double.
20803 * sysdeps/x86_64/fpu/s_fmax.S: Include <libm-alias-double.h>.
20804 (fmax): Define using libm_alias_double.
20805 * sysdeps/x86_64/fpu/s_fmin.S: Include <libm-alias-double.h>.
20806 (fmin): Define using libm_alias_double.
20807 * sysdeps/x86_64/fpu/s_llrint.S: Include <libm-alias-double.h>.
20808 (llrint): Define using libm_alias_double.
20809 [!__ILP32__] (lrint): Likewise.
20810 * sysdeps/x86_64/x32/fpu/s_lrint.S: Include <libm-alias-double.h>.
20811 (lrint): Define using libm_alias_double.
20812
20813 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20814
20815 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20816 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic
20817 objects.
20818 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-generic.S: New file.
20819 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
20820 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-generic.S: Likewise.
20821 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
20822 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Remove file.
20823 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
20824
20825 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20826 (libm-sysdep_routines): Add s_lrint-generic and s_lrintf-generic
20827 objects.
20828 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-generic.S: New file.
20829 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Likewise.
20830 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-generic.S: Likewise.
20831 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Likewise.
20832 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Remove file.
20833 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
20834
20835 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20836 (libm-sysdep_routines): Add s_nearbyint-generic and
20837 s_nearbyintf-generic objects.
20838 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-generic.S: New file.
20839 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Likewise.
20840 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-generic.S: Likewise.
20841 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Likewise.
20842 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: Remove file.
20843 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: Likewise.
20844
20845 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20846 Add s_finitef-generic and s_finite-generic objects.
20847 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-generic.S: New file.
20848 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.c: Likewise.
20849 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-generic.S: Likewise.
20850 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.c: Likewise.
20851 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Remove file.
20852 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Remove file.
20853
20854 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20855 Add s_isinff-generic and s_isinf-generic objects.
20856 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-generic.S: New file.
20857 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.c: Likewise.
20858 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-generic.S: Likewise.
20859 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.c: Likewise.
20860 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Remove file.
20861 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
20862
20863 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20864 Add s_isnanf-generic and s_isnan-generic objects.
20865 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-generic.S: New file.
20866 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-generic.S: Likewise.
20867 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.c: Likewise.
20868 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.c: Likewise.
20869 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Remove file.
20870 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
20871
20872 * sysdeps/sparc/sparc-ifunc.h (sparc_libm_ifunc_redirected): New
20873 macro.
20874 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdep_calls): New
20875 rule.
20876 (sysdep_routines): Use sysdep_calls as base.
20877 (libm-sysdep_routines): Add generic rule for symbols shared with
20878 libc. Add s_signbit-generic and s_signbitf-generic objects.
20879 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.c: New file.
20880 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.c: Likewise.
20881 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-generic.S: Likewise.
20882 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-generic.S: Likewise.
20883 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Remove file.
20884 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
20885
20886 2017-11-29 Joseph Myers <joseph@codesourcery.com>
20887
20888 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-float.h>.
20889 * sysdeps/ia64/fpu/e_acosf.S (acosf): Use libm_alias_float_other.
20890 * sysdeps/ia64/fpu/e_acoshf.S (acoshf): Likewise.
20891 * sysdeps/ia64/fpu/e_asinf.S (asinf): Likewise.
20892 * sysdeps/ia64/fpu/e_atan2f.S (atan2f): Likewise.
20893 * sysdeps/ia64/fpu/e_atanhf.S (atanhf): Likewise.
20894 * sysdeps/ia64/fpu/e_coshf.S (coshf): Likewise.
20895 * sysdeps/ia64/fpu/e_exp10f.S (exp10f): Likewise.
20896 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Likewise.
20897 * sysdeps/ia64/fpu/e_expf.S (expf): Likewise.
20898 * sysdeps/ia64/fpu/e_fmodf.S (fmodf): Likewise.
20899 * sysdeps/ia64/fpu/e_hypotf.S (hypotf): Likewise.
20900 * sysdeps/ia64/fpu/e_lgammaf_r.c (lgammaf_r): Define using
20901 libm_alias_float_r.
20902 * sysdeps/ia64/fpu/e_log2f.S (log2f): Use libm_alias_float_other.
20903 * sysdeps/ia64/fpu/e_logf.S (log10f): Likewise.
20904 (logf): Likewise.
20905 * sysdeps/ia64/fpu/e_powf.S (powf): Likewise.
20906 * sysdeps/ia64/fpu/e_remainderf.S (remainderf): Likewise.
20907 * sysdeps/ia64/fpu/e_sinhf.S (sinhf): Likewise.
20908 * sysdeps/ia64/fpu/e_sqrtf.S (sqrtf): Likewise.
20909 * sysdeps/ia64/fpu/libm_sincosf.S (sincosf): Likewise.
20910 * sysdeps/ia64/fpu/s_asinhf.S (asinhf): Likewise.
20911 * sysdeps/ia64/fpu/s_atanf.S (atanf): Likewise.
20912 * sysdeps/ia64/fpu/s_cbrtf.S (cbrtf): Likewise.
20913 * sysdeps/ia64/fpu/s_ceilf.S (ceilf): Likewise.
20914 * sysdeps/ia64/fpu/s_copysign.S (copysignf): Define using
20915 libm_alias_float.
20916 * sysdeps/ia64/fpu/s_cosf.S (sinf): Use libm_alias_float_other.
20917 (cosf): Likewise.
20918 * sysdeps/ia64/fpu/s_erfcf.S (erfcf): Likewise.
20919 * sysdeps/ia64/fpu/s_erff.S (erff): Likewise.
20920 * sysdeps/ia64/fpu/s_expm1f.S (expm1f): Likewise.
20921 * sysdeps/ia64/fpu/s_fabsf.S (fabsf): Likewise.
20922 * sysdeps/ia64/fpu/s_fdimf.S (fdimf): Likewise.
20923 * sysdeps/ia64/fpu/s_floorf.S (floorf): Likewise.
20924 * sysdeps/ia64/fpu/s_fmaf.S (fmaf): Likewise.
20925 * sysdeps/ia64/fpu/s_fmaxf.S (fmaxf): Likewise.
20926 * sysdeps/ia64/fpu/s_frexpf.c (frexpf): Likewise.
20927 * sysdeps/ia64/fpu/s_ldexpf.c (ldexpf): Likewise.
20928 * sysdeps/ia64/fpu/s_log1pf.S (log1pf): Likewise.
20929 * sysdeps/ia64/fpu/s_logbf.S (logbf): Likewise.
20930 * sysdeps/ia64/fpu/s_modff.S (modff): Likewise.
20931 * sysdeps/ia64/fpu/s_nearbyintf.S (nearbyintf): Likewise.
20932 * sysdeps/ia64/fpu/s_nextafterf.S (nextafterf): Likewise.
20933 * sysdeps/ia64/fpu/s_rintf.S (rintf): Likewise.
20934 * sysdeps/ia64/fpu/s_roundf.S (roundf): Likewise.
20935 * sysdeps/ia64/fpu/s_scalblnf.c (scalblnf): Likewise.
20936 * sysdeps/ia64/fpu/s_scalbnf.c (scalbnf): Define using
20937 libm_alias_float.
20938 * sysdeps/ia64/fpu/s_tanf.S (tanf): Use libm_alias_float_other.
20939 * sysdeps/ia64/fpu/s_tanhf.S (tanhf): Likewise.
20940 * sysdeps/ia64/fpu/s_truncf.S (truncf): Likewise.
20941 * sysdeps/ia64/fpu/w_lgammaf_main.c
20942 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammaf): Likewise.
20943 * sysdeps/ia64/fpu/w_tgammaf_compat.S (tgammaf): Likewise.
20944
20945 2017-11-28 Mike FABIAN <mfabian@redhat.com>
20946 Alexandre Oliva <aoliva@redhat.com>
20947
20948 [BZ #17750]
20949 * Makefile: add fr_CA.UTF-8 to test-input and LOCALES.
20950 * localedata/fr_CA.UTF-8.in: New file with test data for backward
20951 accents sorting.
20952 * localedata/fr_FR.UTF-8.in: Fix test data for forward accents
20953 sorting.
20954 * localedata/locales/cs_CZ (LC_COLLATE): Remove “define DIACRIT_FORWARD”
20955 * localedata/locales/de_DE (LC_COLLATE): Likewise.
20956 * localedata/locales/hu_HU (LC_COLLATE): Likewise.
20957 * localedata/locales/lb_LU (LC_COLLATE): Likewise.
20958 * localedata/locales/yuw_PG (LC_COLLATE): Likewise.
20959 * localedata/locales/fr_CA (LC_COLLATE): Add “define DIACRIT_BACKWARD”
20960 * localedata/locales/iso14651_t1_common: Use “ifdef DIACRIT_FORWARD”
20961 instead of “ifdef DIACRIT_BACKWARD”.
20962
20963 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20964
20965 * config.h.in (HAVE_AS_VIS3_SUPPORT): Remove check for VIS3 support.
20966 * sysdeps/sparc/configure.ac (HAVE_AS_VIS3_SUPPORT): Likewise.
20967 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Likewise.
20968 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Likewise.
20969 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Likewise.
20970 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Likewise.
20971 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
20972 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
20973 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
20974 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
20975 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Likewise.
20976 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Likewise.
20977 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
20978 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
20979 * sysdeps/sparc/sparc-ifunc.h [!HAVE_AS_VIS3_SUPPORT]
20980 (SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
20981 * sysdeps/sparc/sparc32/sparcv9/Makefile [$(have-as-vis3) != yes]
20982 (ASFLAGS.o, ASFLAGS-.os, ASFLAGS-.op, ASFLAGS-.oS): Remove rules.
20983 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20984 ($(have-as-vis3) == yes): Remove conditional.
20985 * sysdeps/sparc/sparc64/Makefile (($(have-as-vis3) == yes)):
20986 Likewise.
20987 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-generic.c: New
20988 file.
20989 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-generic.c: New
20990 file.
20991 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-generic.c: New
20992 file.
20993 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-generic.c: New
20994 file.
20995 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-generic.c: New file.
20996 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-generic.c: New file.
20997 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-generic.c: New file.
20998 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-generic.c: New file.
20999 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-generic.c: New file.
21000 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-generic.c: New file.
21001 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-generic.c: New file.
21002 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-generic.c: New file.
21003
21004 2017-11-29 Joseph Myers <joseph@codesourcery.com>
21005
21006 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-double.h>.
21007 * sysdeps/ia64/fpu/e_acos.S (acos): Use libm_alias_double_other.
21008 * sysdeps/ia64/fpu/e_acosh.S (acosh): Likewise.
21009 * sysdeps/ia64/fpu/e_asin.S (asin): Likewise.
21010 * sysdeps/ia64/fpu/e_atan2.S (atan2): Likewise.
21011 * sysdeps/ia64/fpu/e_atanh.S (atanh): Likewise.
21012 * sysdeps/ia64/fpu/e_cosh.S (cosh): Likewise.
21013 * sysdeps/ia64/fpu/e_exp.S (exp): Likewise.
21014 * sysdeps/ia64/fpu/e_exp10.S (exp10): Likewise.
21015 * sysdeps/ia64/fpu/e_exp2.S (exp2): Likewise.
21016 * sysdeps/ia64/fpu/e_fmod.S (fmod): Likewise.
21017 * sysdeps/ia64/fpu/e_hypot.S (hypot): Likewise.
21018 * sysdeps/ia64/fpu/e_lgamma_r.c (lgamma_r): Define using
21019 libm_alias_double_r.
21020 * sysdeps/ia64/fpu/e_log.S (log10): Use libm_alias_double_other.
21021 (log): Likewise.
21022 * sysdeps/ia64/fpu/e_log2.S (log2): Likewise.
21023 * sysdeps/ia64/fpu/e_pow.S (pow): Likewise.
21024 * sysdeps/ia64/fpu/e_remainder.S (remainder): Likewise.
21025 * sysdeps/ia64/fpu/e_sinh.S (sinh): Likewise.
21026 * sysdeps/ia64/fpu/e_sqrt.S (sqrt): Likewise.
21027 * sysdeps/ia64/fpu/libm_sincos.S (sincos): Likewise.
21028 * sysdeps/ia64/fpu/s_asinh.S (asinh): Likewise.
21029 * sysdeps/ia64/fpu/s_atan.S (atan): Likewise.
21030 * sysdeps/ia64/fpu/s_cbrt.S (cbrt): Likewise.
21031 * sysdeps/ia64/fpu/s_ceil.S (ceil): Likewise.
21032 * sysdeps/ia64/fpu/s_copysign.S (copysign): Define using
21033 libm_alias_double.
21034 * sysdeps/ia64/fpu/s_cos.S (sin): Use libm_alias_double_other.
21035 (cos): Likewise.
21036 * sysdeps/ia64/fpu/s_erf.S (erf): Likewise.
21037 * sysdeps/ia64/fpu/s_erfc.S (erfc): Likewise.
21038 * sysdeps/ia64/fpu/s_expm1.S (expm1): Likewise.
21039 * sysdeps/ia64/fpu/s_fabs.S (fabs): Likewise.
21040 * sysdeps/ia64/fpu/s_fdim.S (fdim): Likewise.
21041 * sysdeps/ia64/fpu/s_floor.S (floor): Likewise.
21042 * sysdeps/ia64/fpu/s_fma.S (fma): Likewise.
21043 * sysdeps/ia64/fpu/s_fmax.S (fmax): Likewise.
21044 * sysdeps/ia64/fpu/s_frexp.c (frexp): Likewise.
21045 * sysdeps/ia64/fpu/s_ldexp.c (ldexp): Likewise.
21046 * sysdeps/ia64/fpu/s_log1p.S (log1p): Likewise.
21047 * sysdeps/ia64/fpu/s_logb.S (logb): Likewise.
21048 * sysdeps/ia64/fpu/s_modf.S (modf): Likewise.
21049 * sysdeps/ia64/fpu/s_nearbyint.S (nearbyint): Likewise.
21050 * sysdeps/ia64/fpu/s_nextafter.S (nextafter): Likewise.
21051 * sysdeps/ia64/fpu/s_rint.S (rint): Likewise.
21052 * sysdeps/ia64/fpu/s_round.S (round): Likewise.
21053 * sysdeps/ia64/fpu/s_scalbn.c (scalbn): Define using
21054 libm_alias_double.
21055 * sysdeps/ia64/fpu/s_tan.S (tan): Use libm_alias_double_other.
21056 * sysdeps/ia64/fpu/s_tanh.S (tanh): Likewise.
21057 * sysdeps/ia64/fpu/s_trunc.S (trunc): Likewise.
21058 * sysdeps/ia64/fpu/w_lgamma_main.c
21059 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgamma): Likewise.
21060 * sysdeps/ia64/fpu/w_tgamma_compat.S (tgamma): Likewise.
21061
21062 2017-11-28 John David Anglin <danglin@gcc.gnu.org>
21063
21064 * sysdeps/hppa/start.S (_start): Check PIC instead of SHARED. Load
21065 address of $global$ into %dp register earlier. Use pc-relative
21066 instruction sequence for PIC case.
21067
21068 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21069
21070 * sysdeps/i386/fpu/s_asinhf.S: Include <libm-alias-float.h>.
21071 (asinhf): Define using libm_alias_float.
21072 * sysdeps/i386/fpu/s_atanf.S: Include <libm-alias-float.h>.
21073 (atanf): Define using libm_alias_float.
21074 * sysdeps/i386/fpu/s_cbrtf.S: Include <libm-alias-float.h>.
21075 (cbrtf): Define using libm_alias_float.
21076 * sysdeps/i386/fpu/s_ceilf.S: Include <libm-alias-float.h>.
21077 (ceilf): Define using libm_alias_float.
21078 * sysdeps/i386/fpu/s_copysignf.S: Include <libm-alias-float.h>.
21079 (copysignf): Define using libm_alias_float.
21080 * sysdeps/i386/fpu/s_expm1f.S: Include <libm-alias-float.h>.
21081 (expm1f): Define using libm_alias_float.
21082 * sysdeps/i386/fpu/s_fabsf.S: Include <libm-alias-float.h>.
21083 (fabsf): Define using libm_alias_float.
21084 * sysdeps/i386/fpu/s_floorf.S: Include <libm-alias-float.h>.
21085 (floorf): Define using libm_alias_float.
21086 * sysdeps/i386/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
21087 (fmaxf): Define using libm_alias_float.
21088 * sysdeps/i386/fpu/s_fminf.S: Include <libm-alias-float.h>.
21089 (fminf): Define using libm_alias_float.
21090 * sysdeps/i386/fpu/s_frexpf.S: Include <libm-alias-float.h>.
21091 (frexpf): Define using libm_alias_float.
21092 * sysdeps/i386/fpu/s_llrintf.S: Include <libm-alias-float.h>.
21093 (llrintf): Define using libm_alias_float.
21094 * sysdeps/i386/fpu/s_logbf.S: Include <libm-alias-float.h>.
21095 (logbf): Define using libm_alias_float.
21096 * sysdeps/i386/fpu/s_lrintf.S: Include <libm-alias-float.h>.
21097 (lrintf): Define using libm_alias_float.
21098 * sysdeps/i386/fpu/s_nearbyintf.S: Include <libm-alias-float.h>.
21099 (nearbyintf): Define using libm_alias_float.
21100 * sysdeps/i386/fpu/s_remquof.S: Include <libm-alias-float.h>.
21101 (remquof): Define using libm_alias_float.
21102 * sysdeps/i386/fpu/s_rintf.S: Include <libm-alias-float.h>.
21103 (rintf): Define using libm_alias_float.
21104 * sysdeps/i386/fpu/s_truncf.S: Include <libm-alias-float.h>.
21105 (truncf): Define using libm_alias_float.
21106 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Include
21107 <libm-alias-float.h>.
21108 (exp2f): Define using libm_alias_float, or libm_alias_float_other
21109 if [SHARED].
21110 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Include
21111 <libm-alias-float.h>.
21112 (expf): Define using libm_alias_float, or libm_alias_float_other
21113 if [SHARED].
21114 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Include
21115 <libm-alias-float.h>.
21116 (log2f): Define using libm_alias_float, or libm_alias_float_other
21117 if [SHARED].
21118 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Include
21119 <libm-alias-float.h>.
21120 (logf): Define using libm_alias_float, or libm_alias_float_other
21121 if [SHARED].
21122 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Include
21123 <libm-alias-float.h>.
21124 (powf): Define using libm_alias_float, or libm_alias_float_other
21125 if [SHARED].
21126 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include
21127 <libm-alias-float.h>.
21128 (cosf): Define using libm_alias_float.
21129 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include
21130 <libm-alias-float.h>.
21131 (sincosf): Define using libm_alias_float.
21132 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include
21133 <libm-alias-float.h>.
21134 (sinf): Define using libm_alias_float.
21135 * sysdeps/i386/i686/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
21136 (fmaxf): Define using libm_alias_float.
21137 * sysdeps/i386/i686/fpu/s_fminf.S: Include <libm-alias-float.h>.
21138 (fminf): Define using libm_alias_float.
21139 * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
21140 <libm-alias-float.h>.
21141 (fmaf): Define using libm_alias_float.
21142
21143 * sysdeps/i386/fpu/s_asinh.S: Include <libm-alias-double.h>.
21144 (asinh): Define using libm_alias_double.
21145 * sysdeps/i386/fpu/s_atan.S: Include <libm-alias-double.h>.
21146 (atan): Define using libm_alias_double.
21147 * sysdeps/i386/fpu/s_cbrt.S: Include <libm-alias-double.h>.
21148 (cbrt): Define using libm_alias_double.
21149 * sysdeps/i386/fpu/s_ceil.S: Include <libm-alias-double.h>.
21150 (ceil): Define using libm_alias_double.
21151 * sysdeps/i386/fpu/s_copysign.S: Include <libm-alias-double.h>.
21152 (copysign): Define using libm_alias_double.
21153 * sysdeps/i386/fpu/s_expm1.S: Include <libm-alias-double.h>.
21154 (expm1): Define using libm_alias_double.
21155 * sysdeps/i386/fpu/s_fabs.S: Include <libm-alias-double.h>.
21156 (fabs): Define using libm_alias_double.
21157 * sysdeps/i386/fpu/s_fdim.c: Include <libm-alias-double.h>.
21158 (fdim): Define using libm_alias_double.
21159 * sysdeps/i386/fpu/s_floor.S: Include <libm-alias-double.h>.
21160 (floor): Define using libm_alias_double.
21161 * sysdeps/i386/fpu/s_fmax.S: Include <libm-alias-double.h>.
21162 (fmax): Define using libm_alias_double.
21163 * sysdeps/i386/fpu/s_fmin.S: Include <libm-alias-double.h>.
21164 (fmin): Define using libm_alias_double.
21165 * sysdeps/i386/fpu/s_frexp.S: Include <libm-alias-double.h>.
21166 (frexp): Define using libm_alias_double.
21167 * sysdeps/i386/fpu/s_llrint.S: Include <libm-alias-double.h>.
21168 (llrint): Define using libm_alias_double.
21169 * sysdeps/i386/fpu/s_logb.S: Include <libm-alias-double.h>.
21170 (logb): Define using libm_alias_double.
21171 * sysdeps/i386/fpu/s_lrint.S: Include <libm-alias-double.h>.
21172 (lrint): Define using libm_alias_double.
21173 * sysdeps/i386/fpu/s_nearbyint.S: Include <libm-alias-double.h>.
21174 (nearbyint): Define using libm_alias_double.
21175 * sysdeps/i386/fpu/s_remquo.S: Include <libm-alias-double.h>.
21176 (remquo): Define using libm_alias_double.
21177 * sysdeps/i386/fpu/s_rint.S: Include <libm-alias-double.h>.
21178 (rint): Define using libm_alias_double.
21179 * sysdeps/i386/fpu/s_trunc.S: Include <libm-alias-double.h>.
21180 (trunc): Define using libm_alias_double.
21181 * sysdeps/i386/i686/fpu/s_fmax.S: Include <libm-alias-double.h>.
21182 (fmax): Define using libm_alias_double.
21183 * sysdeps/i386/i686/fpu/s_fmin.S: Include <libm-alias-double.h>.
21184 (fmin): Define using libm_alias_double.
21185 * sysdeps/i386/i686/multiarch/s_fma.c: Include <libm-alias-double.h>.
21186 (fma): Define using libm_alias_double.
21187
21188 2017-11-28 H.J. Lu <hongjiu.lu@intel.com>
21189
21190 [BZ #22370]
21191 * elf/dl-hwcaps.c (ROUND): Removed.
21192 (_dl_important_hwcaps): Replace ROUND with ELF_NOTE_DESC_OFFSET
21193 and ELF_NOTE_NEXT_OFFSET.
21194 * elf/dl-load.c (ROUND): Removed.
21195 (open_verify): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
21196 * elf/readelflib.c (ROUND): Removed.
21197 (process_elf_file): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
21198 * include/elf.h [!_ISOMAC]: Include <libc-pointer-arith.h>.
21199 [!_ISOMAC] (ELF_NOTE_DESC_OFFSET): New.
21200 [!_ISOMAC] (ELF_NOTE_NEXT_OFFSET): Likewise.
21201
21202 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21203
21204 * sysdeps/s390/fpu/s_fmaf.c: Include <libm-alias-float.h>.
21205 [!__fmaf] (fmaf): Define using libm_alias_float.
21206
21207 * sysdeps/s390/fpu/s_fma.c: Include <libm-alias-double.h>.
21208 [!__fma] (fma): Define using libm_alias_double.
21209 * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: Remove.
21210
21211 2017-11-28 Mike FABIAN <mfabian@redhat.com>
21212
21213 [BZ #22336]
21214 * localedata/locales/cs_CZ (LC_COLLATE): Use “copy "iso14651_t1"”
21215 and implement the collation rules for cs from CLDR on top of that.
21216 * Makefile: Add cs_CZ.UTF-8 to test-input.
21217 * cs_CZ.UTF-8.in: New file with test data to test the Czech sorting.
21218
21219 2017-11-28 Siddhesh Poyarekar <siddhesh@sourceware.org>
21220
21221 * localedata/Makefile (LOCALES): Remove duplicate cs_CZ.UTF-8.
21222
21223 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
21224 Icarus Sparry <icarus.w.sparry@intel.com>
21225
21226 * benchtests/Makefile:Add BENCHSET to allow subsets of
21227 benchmarks to be run.
21228 * benchtests/README: Add documentation for: Running subsets of
21229 benchmarks.
21230
21231 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
21232
21233 * benchtests/scripts/benchout.schema.json: Fix regex to accept a wider
21234 range of tests names.
21235
21236 * benchtests/scripts/benchout.schema.json: Add throughput as accepted
21237 result from property and remove "max", min" and "mean" from
21238 required properties based on benchtests/bench-skeleton.c.
21239
21240 2017-11-28 Florian Weimer <fweimer@redhat.com>
21241
21242 [BZ #20826]
21243 Turn posix/tst-getaddrinfo4, posix/tst-getaddrinfo5 into xtests
21244 due to Internet requirement.
21245 * posix/Makefile (tests): Remove tst-getaddrinfo4,
21246 tst-getaddrinfo5.
21247 (xtests): Add tst-getaddrinfo4, tst-getaddrinfo5.
21248
21249 2017-11-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21250
21251 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
21252 [$(subdir) = string] (sysdep_routines): Add memset-ultra1.
21253 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
21254 (sysdep_routines): Add memset-ultra1.
21255 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-ultra1.S: New
21256 file.
21257 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.c: Likewise.
21258 * sysdeps/sparc/sparc32/sparcv9/multiarch/bzero.c: Likewise.
21259 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h: Likewise.
21260 * sysdeps/sparc/sparc64/multiarch/memset-ultra1.S: Likewise.
21261 * sysdeps/sparc/sparc64/multiarch/memset.c: Likewise.
21262 * sysdeps/sparc/sparc64/multiarch/bzero.c: Likewise.
21263 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.S: Remove file.
21264 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
21265
21266 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-ultra1.S: New
21267 file.
21268 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.c: Likewise.
21269 * sysdeps/sparc/sparc32/sparcv9/multiarch/mempcpy.c: Likewise.
21270 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h: Likewise.
21271 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra1.S: Likewise.
21272 * sysdeps/sparc/sparc64/multiarch/memcpy.c: Likewise.
21273 * sysdeps/sparc/sparc64/multiarch/mempcpy.c: Likewise.
21274 * sysdeps/sparc/sparc-ifunc.h (sparc_libc_ifunc_redirected): New
21275 macro.
21276 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
21277 [$(subdir) = string] (sysdep_routines): Add memcpy-ultra1.
21278 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
21279 (sysdep_routines): Add memcpy-ultra1.
21280 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Remove file.
21281 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.S: Likewise.
21282
21283 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21284
21285 * sysdeps/alpha/fpu/cfloat-compat.h: Include <libm-alias-float.h>.
21286 (cfloat_versions): Take function argument without trailing 'f'.
21287 Call libm_alias_float_other.
21288 * sysdeps/alpha/fpu/cabsf.c: Update call to cfloat_versions.
21289 * sysdeps/alpha/fpu/cargf.c: Likewise.
21290 * sysdeps/alpha/fpu/cimagf.c: Likewise.
21291 * sysdeps/alpha/fpu/conjf.c: Likewise.
21292 * sysdeps/alpha/fpu/crealf.c: Likewise.
21293 * sysdeps/alpha/fpu/s_cacosf.c: Likewise.
21294 * sysdeps/alpha/fpu/s_cacoshf.c: Likewise.
21295 * sysdeps/alpha/fpu/s_casinf.c: Likewise.
21296 * sysdeps/alpha/fpu/s_casinhf.c: Likewise.
21297 * sysdeps/alpha/fpu/s_catanf.c: Likewise.
21298 * sysdeps/alpha/fpu/s_catanhf.c: Likewise.
21299 * sysdeps/alpha/fpu/s_ccosf.c: Likewise.
21300 * sysdeps/alpha/fpu/s_ccoshf.c: Likewise.
21301 * sysdeps/alpha/fpu/s_cexpf.c: Likewise.
21302 * sysdeps/alpha/fpu/s_clogf.c: Likewise.
21303 * sysdeps/alpha/fpu/s_cpowf.c: Likewise.
21304 * sysdeps/alpha/fpu/s_cprojf.c: Likewise.
21305 * sysdeps/alpha/fpu/s_csinf.c: Likewise.
21306 * sysdeps/alpha/fpu/s_csinhf.c: Likewise.
21307 * sysdeps/alpha/fpu/s_csqrtf.c: Likewise.
21308 * sysdeps/alpha/fpu/s_ctanf.c: Likewise.
21309 * sysdeps/alpha/fpu/s_ctanhf.c: Likewise.
21310 * sysdeps/alpha/fpu/s_clog10f.c: Include <libm-alias-float.h>.
21311 (clog10f): Use libm_alias_float_other.
21312 * sysdeps/alpha/fpu/s_ceilf.c: Include <libm-alias-float.h>.
21313 (ceilf): Define using libm_alias_float.
21314 * sysdeps/alpha/fpu/s_copysignf.c: Include <libm-alias-float.h>.
21315 (copysignf): Define using libm_alias_float.
21316 * sysdeps/alpha/fpu/s_fabsf.c: Include <libm-alias-float.h>.
21317 (fabsf): Define using libm_alias_float.
21318 * sysdeps/alpha/fpu/s_floorf.c: Include <libm-alias-float.h>.
21319 (floorf): Define using libm_alias_float.
21320 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-float.h>.
21321 (fmaxf): Define using libm_alias_float.
21322 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-float.h>.
21323 (fminf): Define using libm_alias_float.
21324 * sysdeps/alpha/fpu/s_lrintf.c: Include <libm-alias-float.h>.
21325 (lrintf): Define using libm_alias_float.
21326 (llrintf): Likewise.
21327 * sysdeps/alpha/fpu/s_lroundf.c: Include <libm-alias-float.h>.
21328 (lroundf): Define using libm_alias_float.
21329 (llroundf): Likewise.
21330 * sysdeps/alpha/fpu/s_rintf.c: Include <libm-alias-float.h>.
21331 (rintf): Define using libm_alias_float.
21332 * sysdeps/alpha/fpu/s_truncf.c: Include <libm-alias-float.h>.
21333 (truncf): Define using libm_alias_float.
21334
21335 * sysdeps/aarch64/fpu/s_ceilf.c: Include <libm-alias-float.h>.
21336 (ceilf): Define using libm_alias_float.
21337 * sysdeps/aarch64/fpu/s_floorf.c: Include <libm-alias-float.h>.
21338 (floorf): Define using libm_alias_float.
21339 * sysdeps/aarch64/fpu/s_fmaf.c: Include <libm-alias-float.h>.
21340 (fmaf): Define using libm_alias_float.
21341 * sysdeps/aarch64/fpu/s_fmaxf.c: Include <libm-alias-float.h>.
21342 (fmaxf): Define using libm_alias_float.
21343 * sysdeps/aarch64/fpu/s_fminf.c: Include <libm-alias-float.h>.
21344 (fminf): Define using libm_alias_float.
21345 * sysdeps/aarch64/fpu/s_llrintf.c: Include <libm-alias-float.h>.
21346 (llrintf): Define using libm_alias_float.
21347 * sysdeps/aarch64/fpu/s_llroundf.c: Include <libm-alias-float.h>.
21348 (llroundf): Define using libm_alias_float.
21349 * sysdeps/aarch64/fpu/s_lrintf.c: Include <libm-alias-float.h>.
21350 (lrintf): Define using libm_alias_float.
21351 * sysdeps/aarch64/fpu/s_lroundf.c: Include <libm-alias-float.h>.
21352 (lroundf): Define using libm_alias_float.
21353 * sysdeps/aarch64/fpu/s_nearbyintf.c: Include
21354 <libm-alias-float.h>.
21355 (nearbyintf): Define using libm_alias_float.
21356 * sysdeps/aarch64/fpu/s_rintf.c: Include <libm-alias-float.h>.
21357 (rintf): Define using libm_alias_float.
21358 * sysdeps/aarch64/fpu/s_roundf.c: Include <libm-alias-float.h>.
21359 (roundf): Define using libm_alias_float.
21360 * sysdeps/aarch64/fpu/s_truncf.c: Include <libm-alias-float.h>.
21361 (truncf): Define using libm_alias_float.
21362
21363 * sysdeps/alpha/fpu/s_ceil.c: Include <libm-alias-double.h>.
21364 (ceil): Define using libm_alias_double.
21365 * sysdeps/alpha/fpu/s_copysign.c: Include <libm-alias-double.h>.
21366 (copysign): Define using libm_alias_double.
21367 * sysdeps/alpha/fpu/s_fabs.c: Include <libm-alias-double.h>.
21368 (fabs): Define using libm_alias_double.
21369 * sysdeps/alpha/fpu/s_floor.c: Include <libm-alias-double.h>.
21370 (floor): Define using libm_alias_double.
21371 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-double.h>.
21372 (fmax): Define using libm_alias_double.
21373 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-double.h>.
21374 (fmin): Define using libm_alias_double.
21375 * sysdeps/alpha/fpu/s_lrint.c: Include <libm-alias-double.h>.
21376 (lrint): Define using libm_alias_double.
21377 (llrint): Likewise.
21378 * sysdeps/alpha/fpu/s_lround.c: Include <libm-alias-double.h>.
21379 (lround): Define using libm_alias_double.
21380 (llround): Likewise.
21381 * sysdeps/alpha/fpu/s_rint.c: Include <libm-alias-double.h>.
21382 (rint): Define using libm_alias_double.
21383 * sysdeps/alpha/fpu/s_trunc.c: Include <libm-alias-double.h>.
21384 (trunc): Define using libm_alias_double.
21385
21386 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
21387 (libm_alias_double_r): Add semicolon after weak_alias call.
21388
21389 2017-11-27 Joseph Myers <joseph@codesourcery.com>
21390
21391 * sysdeps/aarch64/fpu/s_ceil.c: Include <libm-alias-double.h>.
21392 (ceil): Define using libm_alias_double.
21393 * sysdeps/aarch64/fpu/s_floor.c: Include <libm-alias-double.h>.
21394 (floor): Define using libm_alias_double.
21395 * sysdeps/aarch64/fpu/s_fma.c: Include <libm-alias-double.h>.
21396 (fma): Define using libm_alias_double.
21397 * sysdeps/aarch64/fpu/s_fmax.c: Include <libm-alias-double.h>.
21398 (fmax): Define using libm_alias_double.
21399 * sysdeps/aarch64/fpu/s_fmin.c: Include <libm-alias-double.h>.
21400 (fmin): Define using libm_alias_double.
21401 * sysdeps/aarch64/fpu/s_llrint.c: Include <libm-alias-double.h>.
21402 (llrint): Define using libm_alias_double.
21403 * sysdeps/aarch64/fpu/s_llround.c: Include <libm-alias-double.h>.
21404 (llround): Define using libm_alias_double.
21405 * sysdeps/aarch64/fpu/s_lrint.c: Include <libm-alias-double.h>.
21406 (lrint): Define using libm_alias_double.
21407 * sysdeps/aarch64/fpu/s_lround.c: Include <libm-alias-double.h>.
21408 (lround): Define using libm_alias_double.
21409 * sysdeps/aarch64/fpu/s_nearbyint.c: Include <libm-alias-double.h>.
21410 (nearbyint): Define using libm_alias_double.
21411 * sysdeps/aarch64/fpu/s_rint.c: Include <libm-alias-double.h>.
21412 (rint): Define using libm_alias_double.
21413 * sysdeps/aarch64/fpu/s_round.c: Include <libm-alias-double.h>.
21414 (round): Define using libm_alias_double.
21415 * sysdeps/aarch64/fpu/s_trunc.c: Include <libm-alias-double.h>.
21416 (trunc): Define using libm_alias_double.
21417
21418 2017-11-27 Florian Weimer <fweimer@redhat.com>
21419
21420 * sysdeps/unix/sysv/linux/mlock2.c: New file.
21421 * sysdeps/unix/sysv/linux/tst-mlock2.c: Likewise.
21422 * sysdeps/unix/sysv/linux/Makefile (routines): Add mlock2.
21423 (tests): Add tst-mlock2.
21424 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Export mlock2.
21425 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_MLOCK2)
21426 [__LINUX_KERNEL_VERSION >= 4.4]: Define.
21427 * sysdeps/unix/sysv/linux/libc**.abilist: Update.
21428 * manual/memory.texi (Page Lock Functions): Move @end deftypefun
21429 for mlock. Document mlock2.
21430
21431 2017-11-27 Joseph Myers <joseph@codesourcery.com>
21432
21433 * sysdeps/ia64/Makeconfig (float64x-alias-fcts): New variable.
21434 * sysdeps/ieee754/float128/Makeconfig (float64x-alias-fcts):
21435 Likewise.
21436 * sysdeps/ieee754/ldbl-128/Makeconfig (float64x-alias-fcts):
21437 Likewise.
21438 * sysdeps/x86/Makeconfig: New file.
21439 * bits/floatn-common.h (__HAVE_FLOAT64X): Remove macro.
21440 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21441 * bits/floatn.h (__HAVE_FLOAT64X): New macro.
21442 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21443 * sysdeps/ia64/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21444 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21445 * sysdeps/ieee754/ldbl-128/bits/floatn.h (__HAVE_FLOAT64X):
21446 Likewise.
21447 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21448 * sysdeps/mips/ieee754/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21449 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21450 * sysdeps/powerpc/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21451 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21452 * sysdeps/x86/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21453 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21454 * manual/math.texi (Mathematics): Document support for _Float64x.
21455 * math/Versions (GLIBC_2.27): Add _Float64x functions.
21456 * stdlib/Versions (GLIBC_2.27): Likewise.
21457 * wcsmbs/Versions (GLIBC_2.27): Likewise.
21458 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
21459 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
21460 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
21461 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
21462 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
21463 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
21464 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
21465 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
21466 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
21467 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
21468 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
21469 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
21470 Likewise.
21471 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
21472 Likewise.
21473 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
21474 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
21475 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
21476 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
21477 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
21478 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
21479 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
21480 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
21481 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
21482 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
21483 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
21484 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
21485 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
21486 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
21487
21488 2017-11-27 Andreas Schwab <schwab@suse.de>
21489
21490 * elf/Makefile (dl-routines): Add dl-sort-maps.
21491 * elf/dl-sort-maps.c: New file.
21492 * sysdeps/generic/ldsodefs.h (_dl_sort_fini): Don't declare.
21493 (_dl_sort_maps): Declare.
21494 * elf/dl-fini.c (_dl_sort_fini): Remove.
21495 (_dl_fini): Use _dl_sort_maps instead of _dl_sort_fini.
21496 * elf/dl-close.c (_dl_close_worker): Likewise.
21497 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_sort_maps instead of
21498 open-coding it.
21499 * elf/dl-open.c (dl_open_worker): Likewise.
21500
21501 2017-11-24 Joseph Myers <joseph@codesourcery.com>
21502
21503 * sysdeps/ieee754/float128/s_fromfpf128.c (fromfpf128): Define
21504 using libm_alias_float128.
21505 * sysdeps/ieee754/float128/s_fromfpxf128.c (fromfpxf128):
21506 Likewise.
21507 * sysdeps/ieee754/float128/s_setpayloadf128.c (setpayloadf128):
21508 Likewise.
21509 * sysdeps/ieee754/float128/s_setpayloadsigf128.c
21510 (setpayloadsigf128): Likewise.
21511 * sysdeps/ieee754/float128/s_ufromfpf128.c (ufromfpf128):
21512 Likewise.
21513 * sysdeps/ieee754/float128/s_ufromfpxf128.c (ufromfpxf128):
21514 Likewise.
21515
21516 * sysdeps/powerpc/powerpc64le/Makefile ($(foreach
21517 suf,$(all-object-suffixes),$(objpfx)test-float64x%$(suf))): Add
21518 -mfloat128 to CFLAGS.
21519 ($(foreach
21520 suf,$(all-object-suffixes),$(objpfx)test-ifloat64x%$(suf))):
21521 Likewise.
21522 (CFLAGS-libm-test-support-float64x.c): New variable.
21523 ($(objpfx)test-float64x% $(objpfx)test-ifloat64x%): Add
21524 $(f128-loader-link) to gnulib-tests.
21525
21526 * sysdeps/generic/libm-alias-float128.h: Include <bits/floatn.h>.
21527 (libm_alias_float128_other_r): If
21528 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE], define f64x
21529 alias.
21530 (libm_alias_float128_r): Add semicolon after weak_alias call.
21531 * sysdeps/generic/libm-alias-ldouble.h
21532 (libm_alias_ldouble_other_r_f128): New macro.
21533 (libm_alias_ldouble_other_r_f64x): Likewise.
21534 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
21535 and libm_alias_ldouble_other_r_f64x.
21536 (libm_alias_ldouble_r): Add semicolon after weak_alias call.
21537 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
21538 (libm_alias_ldouble_other_r_f128): New macro.
21539 (libm_alias_ldouble_other_r_f64x): Likewise.
21540 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
21541 and libm_alias_ldouble_other_r_f64x.
21542
21543 * stdlib/strfroml.c: Always include <stdlib.h>.
21544 [__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x): Define and later
21545 undefine as macro and define as weak alias.
21546 * sysdeps/ieee754/float128/strfromf128.c: Include <bits/floatn.h>.
21547 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE]: Include
21548 <stdlib.h>.
21549 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x):
21550 Define and later undefine as macro and define as weak alias.
21551
21552 * stdlib/strtold.c [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
21553 Define and later undefine as macro. Define as weak alias if
21554 [!USE_WIDE_CHAR].
21555 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x): Define and later
21556 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21557 * sysdeps/ieee754/float128/strtof128.c: Include <bits/floatn.h>.
21558 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
21559 Define and later undefine as macro. Define as weak alias if
21560 [!USE_WIDE_CHAR].
21561 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x):
21562 Define and later undefine as macro. Define as weak alias if
21563 [USE_WIDE_CHAR].
21564 * sysdeps/ieee754/float128/strtof128_l.c
21565 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l):
21566 Define and later undefine as macro. Define as weak alias if
21567 [!USE_WIDE_CHAR].
21568 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l):
21569 Define and later undefine as macro. Define as weak alias if
21570 [USE_WIDE_CHAR].
21571 * sysdeps/ieee754/ldbl-128/strtold_l.c
21572 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21573 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21574 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21575 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21576 * sysdeps/ieee754/ldbl-64-128/strtold_l.c
21577 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21578 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21579 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21580 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21581 * sysdeps/ieee754/ldbl-96/strtold_l.c
21582 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21583 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21584 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21585 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21586
21587 * math/test-float64x.h: New file.
21588 * math/Makefile (type-float64x-yes): New variable.
21589 (test-types): Add $(type-float64x-$(float64x-alias-fcts)).
21590
21591 * sysdeps/generic/math_private.h (min_of_type_f): Make into a
21592 function-like macro.
21593 (min_of_type_): Likewise.
21594 (min_of_type_l): Likewise.
21595 (min_of_type_f128): Likewise.
21596 (min_of_type): Pass () as last argument of __MATH_TG.
21597
21598 * stdlib/tst-strtod-round-skeleton.c
21599 (__STDC_WANT_IEC_60559_TYPES_EXT__): Define before including
21600 headers.
21601
21602 * math/gen-tgmath-tests.py (Type.init_types): Pass suffix argument
21603 for combinations of long double with _Float64 and _Float64x.
21604
21605 * bits/libm-simd-decl-stubs.h (__DECL_SIMD_cosf16): New macro.
21606 (__DECL_SIMD_cosf32): Likewise.
21607 (__DECL_SIMD_cosf64): Likewise.
21608 (__DECL_SIMD_cosf32x): Likewise.
21609 (__DECL_SIMD_cosf64x): Likewise.
21610 (__DECL_SIMD_cosf128x): Likewise.
21611 (__DECL_SIMD_sinf16): Likewise.
21612 (__DECL_SIMD_sinf32): Likewise.
21613 (__DECL_SIMD_sinf64): Likewise.
21614 (__DECL_SIMD_sinf32x): Likewise.
21615 (__DECL_SIMD_sinf64x): Likewise.
21616 (__DECL_SIMD_sinf128x): Likewise.
21617 (__DECL_SIMD_sincosf16): Likewise.
21618 (__DECL_SIMD_sincosf32): Likewise.
21619 (__DECL_SIMD_sincosf64): Likewise.
21620 (__DECL_SIMD_sincosf32x): Likewise.
21621 (__DECL_SIMD_sincosf64x): Likewise.
21622 (__DECL_SIMD_sincosf128x): Likewise.
21623 (__DECL_SIMD_logf16): Likewise.
21624 (__DECL_SIMD_logf32): Likewise.
21625 (__DECL_SIMD_logf64): Likewise.
21626 (__DECL_SIMD_logf32x): Likewise.
21627 (__DECL_SIMD_logf64x): Likewise.
21628 (__DECL_SIMD_logf128x): Likewise.
21629 (__DECL_SIMD_expf16): Likewise.
21630 (__DECL_SIMD_expf32): Likewise.
21631 (__DECL_SIMD_expf64): Likewise.
21632 (__DECL_SIMD_expf32x): Likewise.
21633 (__DECL_SIMD_expf64x): Likewise.
21634 (__DECL_SIMD_expf128x): Likewise.
21635 (__DECL_SIMD_powf16): Likewise.
21636 (__DECL_SIMD_powf32): Likewise.
21637 (__DECL_SIMD_powf64): Likewise.
21638 (__DECL_SIMD_powf32x): Likewise.
21639 (__DECL_SIMD_powf64x): Likewise.
21640 (__DECL_SIMD_powf128x): Likewise.
21641
21642 * stdlib/Versions (libc): Move entries for wcstof128 and
21643 wcstof128_l to ....
21644 * wcsmbs/Versions (libc): ... here.
21645 Include <float128-abi.h>.
21646
21647 2017-11-24 Florian Weimer <fweimer@redhat.com>
21648
21649 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
21650 bits/mman-shared.h.
21651 * sysdeps/unix/sysv/linux/bits/mman-linux.h: Include
21652 <bits/mman-shared.h>.
21653 (MFD_CLOEXEC, MFD_ALLOW_SEALING, MFD_HUGETLB, memfd_create): Move
21654 to ...
21655 * sysdeps/unix/sysv/linux/bits/mman-shared.h: ... this new file.
21656 Add #ifndef guard for the MFD_* constants based on MFD_CLOEXEC.
21657 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
21658 <bits/mman-shared.h>.
21659
21660 2017-11-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21661
21662 [BZ #22457]
21663 * sysdeps/posix/preadv_common.c (PREADV): Use mmap/munmap instead of
21664 posix_memalign/free.
21665 * sysdeps/posix/pwritev_common.c (PWRITEV): Likewise.
21666
21667 2017-11-22 Mike FABIAN <mfabian@redhat.com>
21668
21669 [BZ #22469]
21670 * localedata/locales/pl_PL (LC_COLLATE): Use “copy "iso14651_t1"”
21671 and implement the collation rules for pl from CLDR on top of that.
21672 * Makefile: Add pl_PL.UTF-8 to test-input and to the list
21673 of locales to be built for testing.
21674 * pl_PL.UTF-8.in: New file with test data to test the Polish sorting.
21675
21676 2017-11-23 Joseph Myers <joseph@codesourcery.com>
21677
21678 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-ldouble.h>.
21679 * sysdeps/ia64/fpu/e_acoshl.S (acoshl): Use
21680 libm_alias_ldouble_other.
21681 * sysdeps/ia64/fpu/e_acosl.S (acosl): Likewise.
21682 * sysdeps/ia64/fpu/e_asinl.S (asinl): Likewise.
21683 * sysdeps/ia64/fpu/e_atanhl.S (atanhl): Likewise.
21684 * sysdeps/ia64/fpu/e_coshl.S (coshl): Likewise.
21685 * sysdeps/ia64/fpu/e_exp10l.S (exp10l): Likewise.
21686 * sysdeps/ia64/fpu/e_exp2l.S (exp2l): Likewise.
21687 * sysdeps/ia64/fpu/e_fmodl.S (fmodl): Likewise.
21688 * sysdeps/ia64/fpu/e_hypotl.S (hypotl): Likewise.
21689 * sysdeps/ia64/fpu/e_lgammal_r.c (lgammal_r): Define using
21690 libm_alias_ldouble_r.
21691 * sysdeps/ia64/fpu/e_log2l.S (log2l): Use
21692 libm_alias_ldouble_other.
21693 * sysdeps/ia64/fpu/e_logl.S (logl): Likewise.
21694 (log10l): Likewise.
21695 * sysdeps/ia64/fpu/e_powl.S (powl): Likewise.
21696 * sysdeps/ia64/fpu/e_remainderl.S (remainderl): Likewise.
21697 * sysdeps/ia64/fpu/e_sinhl.S (sinhl): Likewise.
21698 * sysdeps/ia64/fpu/e_sqrtl.S (sqrtl): Likewise.
21699 * sysdeps/ia64/fpu/libm_sincosl.S (sincosl): Likewise.
21700 * sysdeps/ia64/fpu/s_asinhl.S (asinhl): Likewise.
21701 * sysdeps/ia64/fpu/s_atanl.S (atanl): Likewise.
21702 (atan2l): Likewise.
21703 * sysdeps/ia64/fpu/s_cbrtl.S (cbrtl): Likewise.
21704 * sysdeps/ia64/fpu/s_ceill.S (ceill): Likewise.
21705 * sysdeps/ia64/fpu/s_copysign.S (copysignl): Define using
21706 libm_alias_ldouble.
21707 * sysdeps/ia64/fpu/s_cosl.S (sinl): Use libm_alias_ldouble_other.
21708 (cosl): Likewise.
21709 * sysdeps/ia64/fpu/s_erfcl.S (erfcl): Likewise.
21710 * sysdeps/ia64/fpu/s_erfl.S (erfl): Likewise.
21711 * sysdeps/ia64/fpu/s_expm1l.S (expm1l): Likewise.
21712 (expl): Likewise.
21713 * sysdeps/ia64/fpu/s_fabsl.S (fabsl): Likewise.
21714 * sysdeps/ia64/fpu/s_fdiml.S (fdiml): Likewise.
21715 * sysdeps/ia64/fpu/s_floorl.S (floorl): Likewise.
21716 * sysdeps/ia64/fpu/s_fmal.S (fmal): Likewise.
21717 * sysdeps/ia64/fpu/s_fmaxl.S (fmaxl): Likewise.
21718 * sysdeps/ia64/fpu/s_frexpl.c (frexpl): Likewise.
21719 * sysdeps/ia64/fpu/s_ldexpl.c (ldexpl): Likewise.
21720 * sysdeps/ia64/fpu/s_log1pl.S (log1pl): Likewise.
21721 * sysdeps/ia64/fpu/s_logbl.S (logbl): Likewise.
21722 * sysdeps/ia64/fpu/s_modfl.S (modfl): Likewise.
21723 * sysdeps/ia64/fpu/s_nearbyintl.S (nearbyintl): Define using
21724 libm_alias_ldouble.
21725 * sysdeps/ia64/fpu/s_nextafterl.S (nextafterl): Use
21726 libm_alias_ldouble_other.
21727 * sysdeps/ia64/fpu/s_rintl.S (rintl): Likewise.
21728 * sysdeps/ia64/fpu/s_roundl.S (roundl): Likewise.
21729 * sysdeps/ia64/fpu/s_scalbnl.c (scalbnl): Define using
21730 libm_alias_ldouble.
21731 * sysdeps/ia64/fpu/s_tanhl.S (tanhl): Use
21732 libm_alias_ldouble_other.
21733 * sysdeps/ia64/fpu/s_tanl.S (tanl): Likewise.
21734 * sysdeps/ia64/fpu/s_truncl.S (truncl): Likewise.
21735 * sysdeps/ia64/fpu/w_lgammal_main.c
21736 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammal): Likewise.
21737 * sysdeps/ia64/fpu/w_tgammal_compat.S (tgammal): Likewise.
21738
21739 2017-11-23 Florian Weimer <fweimer@redhat.com>
21740
21741 * malloc/malloc.c (tcache_thread_shutdown): Rename from
21742 tcache_thread_freeres. Define for USE_TCACHE and !USE_TCACHE
21743 alike. Remove freeres marker.
21744 * malloc/arena.c (arena_thread_freeres): Call
21745 tcache_thread_shutdown.
21746
21747 2017-11-23 Florian Weimer <fweimer@redhat.com>
21748
21749 [BZ #22459]
21750 Export nscd hash function as __nss_hash.
21751 * include/nss.h (__nss_hash): Declare.
21752 * nis/nis_hash.c (__nis_hash): Call __nss_hash. Turn into compat
21753 symbol.
21754 * nscd/Makefile (aux, nscd-modules): Remove nscd_hash.
21755 * nscd/cache.c (cache_search, cache_add): Call __nss_hash instead
21756 of __nscd_hash.
21757 * nscd/nscd_helper.c (__nscd_cache_search): Likewise.
21758 * nscd/nscd_hash.h, nscd/nscd_hash.c: Remove files.
21759 * nss/Makefiles (routines): Add nss_hash.
21760 * nss/Versions (GLIBC_PRIVATE): Export __nss_hash.
21761 * nss/nss_hash.c: Rename from nis/nis_hash.c.
21762 (__nss_hash): Rename from __nis_hash. Define hidden alias.
21763 * nis/rpcsvc/nislib.h (__nis_hash): Remove declaration.
21764
21765 2017-11-23 Florian Weimer <fweimer@redhat.com>
21766
21767 [BZ #22478]
21768 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Retry on EINTR.
21769 Return error code, not -1.
21770 * signal/tst-sigwait-eintr.c: New file.
21771 * signal/Makefile (tests): Add tst-sigwait-eintr.
21772
21773 2017-11-23 Florian Weimer <fweimer@redhat.com>
21774
21775 Linux: Add memfd_create system call wrapper
21776 * sysdeps/unix/sysv/linux/Makefile [misc] (tests): Add
21777 tst-memfd_create.
21778 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
21779 (MFD_CLOEXEC, MFD_ALLOW_SEALING): Define.
21780 [__USE_GNU] (memfd_create): Declare.
21781 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add memfd_create.
21782 * sysdeps/unix/sysv/linux/syscalls.list (memfd_create): Add.
21783 * sysdeps/unix/sysv/linux/tst-memfd_create.c: New file.
21784 * sysdeps/unix/sysv/linux/**.abilist: Update.
21785 * manual/llio.texi (Memory-mapped I/O): Document memfd_create.
21786
21787 2017-11-22 Joseph Myers <joseph@codesourcery.com>
21788
21789 * localedata/gen-locale.sh: Fix typo in variable name.
21790
21791 * resolv/res_debug.c (p_secstodate): Condition definition on
21792 [SHLIB_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]. Define
21793 directly as __p_secstodate, and as a compat symbol. Do not use
21794 libresolv_hidden_def.
21795 * resolv/resolv.h (p_secstodate): Remove macro and function
21796 declaration.
21797 * resolv/ns_print.c (ns_sprintrrf): Print times with %lu, not
21798 using p_secstodate.
21799 * include/resolv.h (__p_secstodate): Do not use
21800 libresolv_hidden_proto.
21801 * resolv/Makefile (tests): Move tst-p_secstodate to ....
21802 (tests-internal): ... here.
21803 * resolv/tst-p_secstodate.c: Include <shlib-compat.h>. Condition
21804 all contents on [TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]
21805 and declare and use __p_secstodate and use compat_symbol_reference
21806 in that case.
21807 [!TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)] (do_test): Add
21808 implementation returning 77.
21809
21810 [BZ #22463]
21811 * resolv/res_debug.c: Include <libc-diag.h>.
21812 (p_secstodate): Assert time_t at least as wide as u_long. On
21813 overflow, use integer seconds since the epoch as output, or use
21814 "<overflow>" as output and set errno to EOVERFLOW if integer
21815 seconds since the epoch would be 14 or more characters.
21816 (p_secstodate) [__GNUC_PREREQ (7, 0)]: Disable -Wformat-overflow=
21817 for sprintf call.
21818 * resolv/tst-p_secstodate.c: New file.
21819 * resolv/Makefile (tests): Add tst-p_secstodate.
21820 ($(objpfx)tst-p_secstodate): Depend on $(objpfx)libresolv.so.
21821
21822 * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Remove file.
21823 * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
21824 * sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c: Likewise.
21825
21826 2017-11-22 Paul Eggert <eggert@cs.ucla.edu>
21827
21828 * posix/regcomp.c (init_word_char): Add comments.
21829
21830 2017-11-22 Joseph Myers <joseph@codesourcery.com>
21831
21832 [BZ #22447]
21833 * sysdeps/unix/getlogin_r.c (__getlogin_r): Use __strnlen not
21834 strlen to compute length of ut_user and set trailing NUL byte of
21835 result explicitly.
21836
21837 2017-11-21 Mike FABIAN <mfabian@redhat.com>
21838
21839 [BZ #15537]
21840 * localedata/locales/lv_LV (LC_COLLATE): Fix collation by
21841 using “copy "iso14651_t1"” and then implementing the
21842 collation rules for lv from CLDR on top of that.
21843 * Makefile: Add lv_LV.UTF-8 to test-input and to the list
21844 of locales to be built for testing.
21845 * lv_LV.UTF-8.in: New file with test data to test the Latvian
21846 sorting.
21847
21848 2017-11-21 Joseph Myers <joseph@codesourcery.com>
21849
21850 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
21851 [__USE_MISC] (MADV_SPACEAVAIL): Remove macro.
21852 [__USE_MISC] (MADV_VPS_PURGE): Likewise.
21853 [__USE_MISC] (MADV_VPS_INHERIT): Likewise.
21854 [__USE_MISC] (MADV_HWPOISON): New macro.
21855 [__USE_MISC] (MADV_SOFT_OFFLINE): Likewise.
21856
21857 2017-11-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21858
21859 * nptl/pthreadP.h (ASSERT_PTHREAD_INTERNAL_SIZE): Add workarond for
21860 -Wmissing-braces on GCC 4.9.
21861
21862 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
21863
21864 * sysdeps/s390/s390-64/start.S (_start): Add cfi information for r14.
21865 * sysdeps/s390/s390-32/start.S (_start): Likewise
21866 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S
21867 (thread_start): Likewise.
21868 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S
21869 (thread_start): Likewise.
21870 * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S
21871 (__makecontext_ret): Likewise.
21872 * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S
21873 (__makecontext_ret): Likewise.
21874
21875 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
21876
21877 * include/wchar.h (__wcsnlen, __wcscat, __wcsncpy, __wcpncpy,
21878 __wcschrnul): Remove attribute_hidden.
21879
21880 2017-11-20 Paul Eggert <eggert@cs.ucla.edu>
21881
21882 regex: don't assume uint64_t or uint32_t
21883 This avoids -Werror=overflow errors for 32-bit systems in
21884 the 64-bit case. Problem reported by Joseph Myers in:
21885 https://sourceware.org/ml/libc-alpha/2017-11/msg00694.html
21886 Also, when this code is used in Gnulib it ports to platforms
21887 that lack uint64_t and uint32_t. The C standard doesn't guarantee
21888 them, and on some 32-bit compilers there is no uint64_t.
21889 Problem reported by Gianluigi Tiesi in:
21890 http://lists.gnu.org/archive/html/bug-gnulib/2012-03/msg00154.html
21891 * posix/regcomp.c (init_word_char): Don't assume that the types
21892 uint64_t and uint32_t exist. Adapted from Gnulib patch
21893 2012-05-27T06:40:00!eggert@cs.ucla.edu. See:
21894 https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=252b52457da7887667c036d18cc5169777615bb0
21895
21896 2017-11-20 Siddhesh Poyarekar <siddhesh@sourceware.org>
21897
21898 * sysdeps/aarch64/memset-reg.h: New file.
21899 * sysdeps/aarch64/memset.S: Use it.
21900 (__memset): Rename to MEMSET macro.
21901 [ZVA_MACRO]: Use zva_macro.
21902 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
21903 Add memset_generic and memset_falkor.
21904 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
21905 (__libc_ifunc_impl_list): Add memset ifuncs.
21906 * sysdeps/aarch64/multiarch/init-arch.h (INIT_ARCH): New
21907 local variable zva_size.
21908 * sysdeps/aarch64/multiarch/memset.c: New file.
21909 * sysdeps/aarch64/multiarch/memset_generic.S: New file.
21910 * sysdeps/aarch64/multiarch/memset_falkor.S: New file.
21911 * sysdeps/aarch64/multiarch/rtld-memset.S: New file.
21912 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
21913 (DCZID_DZP_MASK): New macro.
21914 (DCZID_BS_MASK): Likewise.
21915 (init_cpu_features): Read and set zva_size.
21916 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h
21917 (struct cpu_features): New member zva_size.
21918
21919 * benchtests/bench-memcpy-walk.c (START_SIZE): Set to 128.
21920 * benchtests/bench-memmove-walk.c (START_SIZE): Likewise.
21921 * benchtests/bench-memset-walk.c (START_SIZE): Likewise.
21922
21923 * benchtests/bench-memcpy-walk.c (do_one_test): Copy only
21924 backwards. Fix timing computation.
21925 * benchtests/bench-memmove-walk.c (do_one_test): Likewise.
21926 * benchtests/bench-memset-walk.c (do_one_test): Walk backwards
21927 on memset by N at a time. Fix timing computation.
21928
21929 2017-11-20 Florian Weimer <fweimer@redhat.com>
21930
21931 * manual/llio.texi (Memory-mapped I/O): Document MAP_HUGETLB,
21932 MADV_HUGEPAGE, MADV_NOHUGEPAGE.
21933
21934 2017-11-19 Florian Weimer <fweimer@redhat.com>
21935
21936 manual: Document mprotect
21937 * manual/memory.texi (Memory Protection): New section.
21938 * manual/llio.texi (Memory-mapped I/O): Remove duplicate
21939 documentation of PROT_* flags and reference the Memory Protection
21940 section instead.
21941
21942 2017-11-19 Florian Weimer <fweimer@redhat.com>
21943
21944 * manual/llio.texi (I/O Primitives): Move preadv, preadv64,
21945 pwritev, pwritev64, preadv2, preadv64v2, pwritev2, pwritev64v2 ...
21946 (Scatter-Gather): ... to here. Remove misleading comment.
21947
21948 2017-11-18 Christian Brauner <christian.brauner@ubuntu.com>
21949
21950 * support/support_become_root.c (setup_uid_gid_mapping): Fix comment
21951 style.
21952
21953 * support/support_become_root.c (setup_uid_gid_mapping): Don't fail
21954 when /proc/<pid>/setgroups does not exist.
21955
21956 2017-11-18 Florian Weimer <fweimer@redhat.com>
21957
21958 * sysdeps/unix/sysv/linux/tst-ttyname.c
21959 (become_root_in_mount_ns): Remove.
21960 (do_in_chroot_1): Call support_enter_mount_namespace.
21961 (do_in_chroot_2): Likewise.
21962 (do_test): Call support_become_root early.
21963
21964 2017-11-18 Florian Weimer <fweimer@redhat.com>
21965
21966 * support/namespace.h (support_enter_mount_namespace): Declare.
21967 * support/support_enter_mount_namespace.c: New file.
21968 * support/Makefile (libsupport-routines): Add
21969 support_enter_mount_namespace.
21970
21971 2017-11-18 Florian Weimer <fweimer@redhat.com>
21972
21973 * support/temp_file.c (support_create_temp_directory): Use
21974 test_dir and do not rely on the presence of the XXXXXX suffix.
21975 * support/temp_file.h (support_create_temp_directory): Update
21976 comment.
21977 * support/tst-xreadlink.c (do_test): Adjust.
21978 * support/support_chroot.c (support_chroot_create): Likewise.
21979
21980 2017-11-17 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
21981
21982 * sysdeps/powerpc/bits/hwcap.h (PPC_FEATURE2_HTM_NO_SUSPEND): New
21983 macro.
21984 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add
21985 htm-no-suspend.
21986
21987 2017-11-17 Joseph Myers <joseph@codesourcery.com>
21988
21989 * sysdeps/x86_64/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
21990 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
21991 * sysdeps/x86_64/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
21992 (ceill): Define using libm_alias_ldouble.
21993 * sysdeps/x86_64/fpu/s_copysignl.S: Include
21994 <libm-alias-ldouble.h>.
21995 (copysignl): Define using libm_alias_ldouble.
21996 * sysdeps/x86_64/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
21997 (fabsl): Define using libm_alias_ldouble.
21998 * sysdeps/x86_64/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
21999 (floorl): Define using libm_alias_ldouble.
22000 * sysdeps/x86_64/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22001 (fmaxl): Define using libm_alias_ldouble.
22002 * sysdeps/x86_64/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22003 (fminl): Define using libm_alias_ldouble.
22004 * sysdeps/x86_64/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
22005 (llrintl): Define using libm_alias_ldouble.
22006 (lrintl): Likewise.
22007 * sysdeps/x86_64/fpu/s_nearbyintl.S: Include
22008 <libm-alias-ldouble.h>.
22009 (nearbyintl): Define using libm_alias_ldouble.
22010 * sysdeps/x86_64/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
22011 (truncl): Define using libm_alias_ldouble.
22012 * sysdeps/x86_64/x32/fpu/s_lrintl.S: Include
22013 <libm-alias-ldouble.h>.
22014 (lrintl): Define using libm_alias_ldouble.
22015
22016 * sysdeps/i386/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
22017 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
22018 * sysdeps/i386/fpu/s_asinhl.S: Include <libm-alias-ldouble.h>.
22019 (asinhl): Define using libm_alias_ldouble.
22020 * sysdeps/i386/fpu/s_atanl.c: Include <libm-alias-ldouble.h>.
22021 (atanl): Define using libm_alias_ldouble.
22022 * sysdeps/i386/fpu/s_cbrtl.S: Include <libm-alias-ldouble.h>.
22023 (cbrtl): Define using libm_alias_ldouble.
22024 * sysdeps/i386/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
22025 (ceill): Define using libm_alias_ldouble.
22026 * sysdeps/i386/fpu/s_copysignl.S: Include <libm-alias-ldouble.h>.
22027 (copysignl): Define using libm_alias_ldouble.
22028 * sysdeps/i386/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
22029 (fabsl): Define using libm_alias_ldouble.
22030 * sysdeps/i386/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
22031 (floorl): Define using libm_alias_ldouble.
22032 * sysdeps/i386/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22033 (fmaxl): Define using libm_alias_ldouble.
22034 * sysdeps/i386/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22035 (fminl): Define using libm_alias_ldouble.
22036 * sysdeps/i386/fpu/s_frexpl.S: Include <libm-alias-ldouble.h>.
22037 (frexpl): Define using libm_alias_ldouble.
22038 * sysdeps/i386/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
22039 (llrintl): Define using libm_alias_ldouble.
22040 * sysdeps/i386/fpu/s_logbl.c: Include <libm-alias-ldouble.h>.
22041 (logbl): Define using libm_alias_ldouble.
22042 * sysdeps/i386/fpu/s_lrintl.S: Include <libm-alias-ldouble.h>.
22043 (lrintl): Define using libm_alias_ldouble.
22044 * sysdeps/i386/fpu/s_nearbyintl.S: Include <libm-alias-ldouble.h>.
22045 (nearbyintl): Define using libm_alias_ldouble.
22046 * sysdeps/i386/fpu/s_nextafterl.c: Include <libm-alias-ldouble.h>.
22047 (nextafterl): Define using libm_alias_ldouble.
22048 * sysdeps/i386/fpu/s_remquol.S: Include <libm-alias-ldouble.h>.
22049 (remquol): Define using libm_alias_ldouble.
22050 * sysdeps/i386/fpu/s_rintl.c: Include <libm-alias-ldouble.h>.
22051 (rintl): Define using libm_alias_ldouble.
22052 * sysdeps/i386/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
22053 (truncl): Define using libm_alias_ldouble.
22054 * sysdeps/i386/i686/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22055 (fmaxl): Define using libm_alias_ldouble.
22056 * sysdeps/i386/i686/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22057 (fminl): Define using libm_alias_ldouble.
22058
22059 * bits/floatn-common.h [!__ASSEMBLER]: Disable everything related
22060 to C syntax instead of availability and properties of types.
22061 * bits/floatn.h [!__ASSEMBLER]: Likewise.
22062 * sysdeps/ia64/bits/floatn.h [!__ASSEMBLER]: Likewise.
22063 * sysdeps/ieee754/ldbl-128/bits/floatn.h [!__ASSEMBLER]: Likewise.
22064 * sysdeps/mips/ieee754/bits/floatn.h [!__ASSEMBLER]: Likewise.
22065 * sysdeps/powerpc/bits/floatn.h [!__ASSEMBLER]: Likewise.
22066 * sysdeps/x86/bits/floatn.h [!__ASSEMBLER]: Likewise.
22067
22068 2017-11-17 Florian Weimer <fweimer@redhat.com>
22069
22070 support_become_root: Enable file creation in namespaces.
22071 * support/support_become_root.c (setup_mapping): New function.
22072 (support_become_root): Call it.
22073
22074 2017-11-17 Joseph Myers <joseph@codesourcery.com>
22075
22076 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DCPOP): New
22077 macro.
22078
22079 2017-11-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22080
22081 * sysdeps/aarch64/fpu/Makefile (CFLAGS-s_fmax.c, CFLAGS-s_fmaxf.c,
22082 CFLAGS-s_fmin.c, CFLAGS-s_fminf.c): New rule: add -ffinite-math-only.
22083
22084 2017-11-16 Joseph Myers <joseph@codesourcery.com>
22085
22086 * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_RAWIP): New macro.
22087
22088 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
22089 version to 4.14.
22090
22091 2017-11-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
22092
22093 * INSTALL: Fix botched up regeneration.
22094
22095 * NEWS: Update sourceare link to https.
22096 * configure.ac: Likewise.
22097 * crypt/md5test-giant.c: Likewise.
22098 * dlfcn/bug-atexit1.c: Likewise.
22099 * dlfcn/bug-atexit2.c: Likewise.
22100 * localedata/README: Likewise.
22101 * malloc/tst-mallocfork.c: Likewise.
22102 * manual/install.texi: Likewise.
22103 * nptl/tst-pthread-getattr.c: Likewise.
22104 * stdio-common/tst-fgets.c: Likewise.
22105 * stdio-common/tst-fwrite.c: Likewise.
22106 * sunrpc/Makefile: Likewise.
22107 * sysdeps/arm/armv7/multiarch/memcpy_impl.S: Likewise.
22108 * wcsmbs/tst-mbrtowc2.c: Likewise.
22109 * configure: Regenerate.
22110 * INSTALL: Regenerate.
22111
22112 2017-11-15 Martin Sebor <msebor@redhat.com>
22113
22114 * misc/sys/cdefs.h (__attribute_nonstring__): New macro.
22115 * sysdeps/gnu/bits/utmp.h (struct utmp): Use it.
22116 * sysdeps/unix/sysv/linux/s390/bits/utmp.h (struct utmp): Same.
22117
22118 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
22119
22120 [BZ #22145]
22121 * sysdeps/unix/sysv/linux/tst-ttyname.c: New file.
22122 * sysdeps/unix/sysv/linux/Makefile: Add tst-ttyname to tests.
22123
22124 [BZ #22145]
22125 * sysdeps/unix/sysv/linux/ttyname.c (ttyname):
22126 Defer is_pty check until end of the function.
22127 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
22128
22129 [BZ #22145]
22130 * sysdeps/unix/sysv/linux/ttyname.h (is_mytty): New function.
22131 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Call is_mytty.
22132 (ttyname): Likewise.
22133 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
22134 (__ttyname_r): Likewise.
22135
22136 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Change return type from
22137 int to bool.
22138
22139 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Update doc reference.
22140
22141 * manual/terminal.texi (Is It a Terminal):
22142 Mention ENODEV for ttyname and ttyname_r.
22143
22144 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22145
22146 * sysdeps/unix/sysv/linux/bits/socket.h (MSG_ZEROCOPY): New enum
22147 constant and macro.
22148
22149 * sysdeps/unix/sysv/linux/bits/mman-linux.h
22150 [__USE_MISC] (MADV_WIPEONFORK): New macro.
22151 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
22152 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
22153 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
22154 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
22155
22156 2017-11-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22157
22158 * signal/sigrelse.c (sigrelse): Optimize implementation.
22159
22160 * sysdeps/posix/sigpause.c (do_sigpause): Remove.
22161 (__sigpause): Rely on __sigsuspend to implement single thread
22162 optimization. Add LIBC_CANCEL_HANDLED for cancellation marking.
22163
22164 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22165
22166 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
22167 kernel version to 4.14.
22168
22169 2017-11-15 Steve Ellcey <sellcey@cavium.com>
22170
22171 [BZ #22442]
22172 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex):
22173 Check if ifname is too long.
22174
22175 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
22176
22177 * sysdeps/unix/sysv/linux/epoll_wait.c: Include <sysdep-cancel.h>.
22178
22179 2017-11-15 Mike FABIAN <mfabian@redhat.com>
22180
22181 * localedata/locales/ka_GE (LC_MESSAGES): Add “X” back to yesexpr,
22182 was accidentally lost.
22183
22184 2017-11-15 Mike FABIAN <mfabian@redhat.com>
22185
22186 * localedata/locales/az_IR: Add standard copyright header.
22187
22188 2017-11-15 Florian Weimer <fweimer@redhat.com>
22189
22190 [BZ #22439]
22191 * malloc/malloc.c (__malloc_info): Count all heaps in an arena,
22192 not just the top one. Output a new "subheaps" statistic.
22193
22194 2017-11-15 Florian Weimer <fweimer@redhat.com>
22195
22196 [BZ #22408]
22197 * malloc/malloc.c (__malloc_info): Obtain arena heap statistics
22198 under the per-arena lock.
22199 * malloc/Makefile (tests): Add tst-malloc_info.
22200 (tst-malloc_info): Link with libpthread.
22201 * malloc/tst-malloc_info.c: New file.
22202
22203 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22204
22205 [BZ #21660]
22206 * math/tgmath.h (__HAVE_BUILTIN_TGMATH): New macro.
22207 [__HAVE_BUILTIN_TGMATH] (__TG_F16_ARG): Likewise.
22208 [__HAVE_BUILTIN_TGMATH] (__TG_F32_ARG): Likewise.
22209 [__HAVE_BUILTIN_TGMATH] (__TG_F64_ARG): Likewise.
22210 [__HAVE_BUILTIN_TGMATH] (__TG_F128_ARG): Likewise.
22211 [__HAVE_BUILTIN_TGMATH] (__TG_F32X_ARG): Likewise.
22212 [__HAVE_BUILTIN_TGMATH] (__TG_F64X_ARG): Likewise.
22213 [__HAVE_BUILTIN_TGMATH] (__TG_F128X_ARG): Likewise.
22214 [__HAVE_BUILTIN_TGMATH] (__TGMATH_FUNCS): Likewise.
22215 [__HAVE_BUILTIN_TGMATH] (__TGMATH_RCFUNCS): Likewise.
22216 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1): Likewise.
22217 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2): Likewise.
22218 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2STD): Likewise.
22219 [__HAVE_BUILTIN_TGMATH] (__TGMATH_3): Likewise.
22220 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1C): Likewise.
22221 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2C): Likewise.
22222 (__tgml): Make conditional on [!__HAVE_BUILTIN_TGMATH].
22223 (__floating_type): Likewise.
22224 (__real_integer_type): Likewise.
22225 (__complex_integer_type): Likewise.
22226 (__expr_is_real): Likewise.
22227 (__tgmath_real_type_sub): Likewise.
22228 (__tgmath_real_type): Likewise.
22229 (__tgmath_complex_type_sub): Likewise.
22230 (__tgmath_complex_type): Likewise.
22231 (__TGMATH_F128): Likewise.
22232 (__TGMATH_CF128): Likewise.
22233 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_ONLY): Define using
22234 new macros.
22235 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
22236 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_ONLY):
22237 Likewise.
22238 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_STD_ONLY):
22239 Likewise.
22240 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_ONLY): Likewise.
22241 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
22242 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
22243 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY):
22244 Likewise.
22245 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_REAL_ONLY): Likewise.
22246 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY):
22247 Likewise.
22248 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG): Likewise.
22249 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_IMAG): Likewise.
22250 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG_RET_REAL):
22251 Likewise.
22252 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_IMAG): Likewise.
22253 (__TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME): New macro.
22254 (carg): Use __TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME.
22255 (cimag): Likewise.
22256 (creal): Likewise.
22257
22258 2017-11-14 Joseph Myers <joseph@codesourcery.com>
22259
22260 * string/tester.c (test_stpncpy): Disable -Wstringop-truncation
22261 for stpncpy calls for GCC 8.
22262 (test_strncat): Disable -Wstringop-truncation warning for strncat
22263 calls for GCC 8. Disable -Wstringop-overflow= warning for one
22264 strncat call for GCC 7.
22265 (test_strncpy): Disable -Wstringop-truncation warning for strncpy
22266 calls for GCC 8.
22267 (test_memcmp): Use memcpy instead of strncpy for calls not copying
22268 trailing NUL.
22269
22270 * string/bug-strncat1.c: Include <libc-diag.h>.
22271 (main): Disable -Wstringop-truncation for strncat call for GCC 8.
22272
22273 2017-11-13 Claude Paroz <claude@2xlibre.net>
22274
22275 [BZ #22387]
22276 * localedata/locales/aa_DJ: Improved readibility by replacing
22277 <Uxxxx> sequences in the ASCII printable range by their ASCII
22278 character equivalents.
22279 * localedata/locales/aa_ER: Likewise.
22280 * localedata/locales/aa_ER@saaho: Likewise.
22281 * localedata/locales/aa_ET: Likewise.
22282 * localedata/locales/af_ZA: Likewise.
22283 * localedata/locales/agr_PE: Likewise.
22284 * localedata/locales/ak_GH: Likewise.
22285 * localedata/locales/am_ET: Likewise.
22286 * localedata/locales/anp_IN: Likewise.
22287 * localedata/locales/ar_AE: Likewise.
22288 * localedata/locales/ar_BH: Likewise.
22289 * localedata/locales/ar_DZ: Likewise.
22290 * localedata/locales/ar_EG: Likewise.
22291 * localedata/locales/ar_IN: Likewise.
22292 * localedata/locales/ar_IQ: Likewise.
22293 * localedata/locales/ar_JO: Likewise.
22294 * localedata/locales/ar_KW: Likewise.
22295 * localedata/locales/ar_LB: Likewise.
22296 * localedata/locales/ar_LY: Likewise.
22297 * localedata/locales/ar_MA: Likewise.
22298 * localedata/locales/ar_OM: Likewise.
22299 * localedata/locales/ar_QA: Likewise.
22300 * localedata/locales/ar_SA: Likewise.
22301 * localedata/locales/ar_SD: Likewise.
22302 * localedata/locales/ar_SS: Likewise.
22303 * localedata/locales/ar_SY: Likewise.
22304 * localedata/locales/ar_TN: Likewise.
22305 * localedata/locales/ar_YE: Likewise.
22306 * localedata/locales/as_IN: Likewise.
22307 * localedata/locales/ast_ES: Likewise.
22308 * localedata/locales/ayc_PE: Likewise.
22309 * localedata/locales/az_AZ: Likewise.
22310 * localedata/locales/az_IR: Likewise.
22311 * localedata/locales/be_BY: Likewise.
22312 * localedata/locales/be_BY@latin: Likewise.
22313 * localedata/locales/bem_ZM: Likewise.
22314 * localedata/locales/ber_DZ: Likewise.
22315 * localedata/locales/ber_MA: Likewise.
22316 * localedata/locales/bg_BG: Likewise.
22317 * localedata/locales/bhb_IN: Likewise.
22318 * localedata/locales/bho_IN: Likewise.
22319 * localedata/locales/bi_VU: Likewise.
22320 * localedata/locales/bn_BD: Likewise.
22321 * localedata/locales/bn_IN: Likewise.
22322 * localedata/locales/bo_CN: Likewise.
22323 * localedata/locales/bo_IN: Likewise.
22324 * localedata/locales/br_FR: Likewise.
22325 * localedata/locales/brx_IN: Likewise.
22326 * localedata/locales/bs_BA: Likewise.
22327 * localedata/locales/byn_ER: Likewise.
22328 * localedata/locales/ca_AD: Likewise.
22329 * localedata/locales/ca_ES: Likewise.
22330 * localedata/locales/ca_FR: Likewise.
22331 * localedata/locales/ca_IT: Likewise.
22332 * localedata/locales/ce_RU: Likewise.
22333 * localedata/locales/chr_US: Likewise.
22334 * localedata/locales/cmn_TW: Likewise.
22335 * localedata/locales/crh_UA: Likewise.
22336 * localedata/locales/cs_CZ: Likewise.
22337 * localedata/locales/csb_PL: Likewise.
22338 * localedata/locales/cv_RU: Likewise.
22339 * localedata/locales/cy_GB: Likewise.
22340 * localedata/locales/da_DK: Likewise.
22341 * localedata/locales/de_AT: Likewise.
22342 * localedata/locales/de_BE: Likewise.
22343 * localedata/locales/de_CH: Likewise.
22344 * localedata/locales/de_DE: Likewise.
22345 * localedata/locales/de_IT: Likewise.
22346 * localedata/locales/de_LI: Likewise.
22347 * localedata/locales/de_LU: Likewise.
22348 * localedata/locales/doi_IN: Likewise.
22349 * localedata/locales/dv_MV: Likewise.
22350 * localedata/locales/dz_BT: Likewise.
22351 * localedata/locales/el_CY: Likewise.
22352 * localedata/locales/el_GR: Likewise.
22353 * localedata/locales/en_AG: Likewise.
22354 * localedata/locales/en_AU: Likewise.
22355 * localedata/locales/en_BW: Likewise.
22356 * localedata/locales/en_CA: Likewise.
22357 * localedata/locales/en_DK: Likewise.
22358 * localedata/locales/en_GB: Likewise.
22359 * localedata/locales/en_HK: Likewise.
22360 * localedata/locales/en_IE: Likewise.
22361 * localedata/locales/en_IL: Likewise.
22362 * localedata/locales/en_IN: Likewise.
22363 * localedata/locales/en_NG: Likewise.
22364 * localedata/locales/en_NZ: Likewise.
22365 * localedata/locales/en_PH: Likewise.
22366 * localedata/locales/en_SG: Likewise.
22367 * localedata/locales/en_US: Likewise.
22368 * localedata/locales/en_ZA: Likewise.
22369 * localedata/locales/en_ZM: Likewise.
22370 * localedata/locales/en_ZW: Likewise.
22371 * localedata/locales/eo: Likewise.
22372 * localedata/locales/es_AR: Likewise.
22373 * localedata/locales/es_BO: Likewise.
22374 * localedata/locales/es_CL: Likewise.
22375 * localedata/locales/es_CO: Likewise.
22376 * localedata/locales/es_CR: Likewise.
22377 * localedata/locales/es_CU: Likewise.
22378 * localedata/locales/es_DO: Likewise.
22379 * localedata/locales/es_EC: Likewise.
22380 * localedata/locales/es_ES: Likewise.
22381 * localedata/locales/es_GT: Likewise.
22382 * localedata/locales/es_HN: Likewise.
22383 * localedata/locales/es_MX: Likewise.
22384 * localedata/locales/es_NI: Likewise.
22385 * localedata/locales/es_PA: Likewise.
22386 * localedata/locales/es_PE: Likewise.
22387 * localedata/locales/es_PR: Likewise.
22388 * localedata/locales/es_PY: Likewise.
22389 * localedata/locales/es_SV: Likewise.
22390 * localedata/locales/es_US: Likewise.
22391 * localedata/locales/es_UY: Likewise.
22392 * localedata/locales/es_VE: Likewise.
22393 * localedata/locales/et_EE: Likewise.
22394 * localedata/locales/eu_ES: Likewise.
22395 * localedata/locales/eu_ES@euro: Likewise.
22396 * localedata/locales/fa_IR: Likewise.
22397 * localedata/locales/ff_SN: Likewise.
22398 * localedata/locales/fi_FI: Likewise.
22399 * localedata/locales/fil_PH: Likewise.
22400 * localedata/locales/fo_FO: Likewise.
22401 * localedata/locales/fr_BE: Likewise.
22402 * localedata/locales/fr_CA: Likewise.
22403 * localedata/locales/fr_CH: Likewise.
22404 * localedata/locales/fr_FR: Likewise.
22405 * localedata/locales/fr_LU: Likewise.
22406 * localedata/locales/fur_IT: Likewise.
22407 * localedata/locales/fy_DE: Likewise.
22408 * localedata/locales/fy_NL: Likewise.
22409 * localedata/locales/ga_IE: Likewise.
22410 * localedata/locales/gd_GB: Likewise.
22411 * localedata/locales/gez_ER: Likewise.
22412 * localedata/locales/gez_ET: Likewise.
22413 * localedata/locales/gl_ES: Likewise.
22414 * localedata/locales/gu_IN: Likewise.
22415 * localedata/locales/gv_GB: Likewise.
22416 * localedata/locales/ha_NG: Likewise.
22417 * localedata/locales/hak_TW: Likewise.
22418 * localedata/locales/he_IL: Likewise.
22419 * localedata/locales/hi_IN: Likewise.
22420 * localedata/locales/hif_FJ: Likewise.
22421 * localedata/locales/hne_IN: Likewise.
22422 * localedata/locales/hr_HR: Likewise.
22423 * localedata/locales/hsb_DE: Likewise.
22424 * localedata/locales/ht_HT: Likewise.
22425 * localedata/locales/hu_HU: Likewise.
22426 * localedata/locales/hy_AM: Likewise.
22427 * localedata/locales/i18n: Likewise.
22428 * localedata/locales/ia_FR: Likewise.
22429 * localedata/locales/id_ID: Likewise.
22430 * localedata/locales/ig_NG: Likewise.
22431 * localedata/locales/ik_CA: Likewise.
22432 * localedata/locales/is_IS: Likewise.
22433 * localedata/locales/it_CH: Likewise.
22434 * localedata/locales/it_IT: Likewise.
22435 * localedata/locales/iu_CA: Likewise.
22436 * localedata/locales/ja_JP: Likewise.
22437 * localedata/locales/ka_GE: Likewise.
22438 * localedata/locales/kk_KZ: Likewise.
22439 * localedata/locales/kl_GL: Likewise.
22440 * localedata/locales/kn_IN: Likewise.
22441 * localedata/locales/ko_KR: Likewise.
22442 * localedata/locales/kok_IN: Likewise.
22443 * localedata/locales/ks_IN: Likewise.
22444 * localedata/locales/ks_IN@devanagari: Likewise.
22445 * localedata/locales/ku_TR: Likewise.
22446 * localedata/locales/kw_GB: Likewise.
22447 * localedata/locales/ky_KG: Likewise.
22448 * localedata/locales/lb_LU: Likewise.
22449 * localedata/locales/lg_UG: Likewise.
22450 * localedata/locales/li_BE: Likewise.
22451 * localedata/locales/li_NL: Likewise.
22452 * localedata/locales/lij_IT: Likewise.
22453 * localedata/locales/ln_CD: Likewise.
22454 * localedata/locales/lo_LA: Likewise.
22455 * localedata/locales/lt_LT: Likewise.
22456 * localedata/locales/lv_LV: Likewise.
22457 * localedata/locales/lzh_TW: Likewise.
22458 * localedata/locales/mag_IN: Likewise.
22459 * localedata/locales/mai_IN: Likewise.
22460 * localedata/locales/mg_MG: Likewise.
22461 * localedata/locales/mhr_RU: Likewise.
22462 * localedata/locales/mi_NZ: Likewise.
22463 * localedata/locales/mk_MK: Likewise.
22464 * localedata/locales/ml_IN: Likewise.
22465 * localedata/locales/mn_MN: Likewise.
22466 * localedata/locales/mni_IN: Likewise.
22467 * localedata/locales/mr_IN: Likewise.
22468 * localedata/locales/ms_MY: Likewise.
22469 * localedata/locales/mt_MT: Likewise.
22470 * localedata/locales/my_MM: Likewise.
22471 * localedata/locales/nan_TW: Likewise.
22472 * localedata/locales/nan_TW@latin: Likewise.
22473 * localedata/locales/nb_NO: Likewise.
22474 * localedata/locales/nds_DE: Likewise.
22475 * localedata/locales/nds_NL: Likewise.
22476 * localedata/locales/ne_NP: Likewise.
22477 * localedata/locales/nhn_MX: Likewise.
22478 * localedata/locales/niu_NU: Likewise.
22479 * localedata/locales/niu_NZ: Likewise.
22480 * localedata/locales/nl_AW: Likewise.
22481 * localedata/locales/nl_BE: Likewise.
22482 * localedata/locales/nl_NL: Likewise.
22483 * localedata/locales/nn_NO: Likewise.
22484 * localedata/locales/nr_ZA: Likewise.
22485 * localedata/locales/nso_ZA: Likewise.
22486 * localedata/locales/oc_FR: Likewise.
22487 * localedata/locales/om_ET: Likewise.
22488 * localedata/locales/om_KE: Likewise.
22489 * localedata/locales/or_IN: Likewise.
22490 * localedata/locales/os_RU: Likewise.
22491 * localedata/locales/pa_IN: Likewise.
22492 * localedata/locales/pa_PK: Likewise.
22493 * localedata/locales/pap_AW: Likewise.
22494 * localedata/locales/pap_CW: Likewise.
22495 * localedata/locales/pl_PL: Likewise.
22496 * localedata/locales/ps_AF: Likewise.
22497 * localedata/locales/pt_BR: Likewise.
22498 * localedata/locales/pt_PT: Likewise.
22499 * localedata/locales/quz_PE: Likewise.
22500 * localedata/locales/raj_IN: Likewise.
22501 * localedata/locales/ro_RO: Likewise.
22502 * localedata/locales/ru_RU: Likewise.
22503 * localedata/locales/ru_UA: Likewise.
22504 * localedata/locales/rw_RW: Likewise.
22505 * localedata/locales/sa_IN: Likewise.
22506 * localedata/locales/sat_IN: Likewise.
22507 * localedata/locales/sc_IT: Likewise.
22508 * localedata/locales/sd_IN: Likewise.
22509 * localedata/locales/sd_IN@devanagari: Likewise.
22510 * localedata/locales/se_NO: Likewise.
22511 * localedata/locales/sgs_LT: Likewise.
22512 * localedata/locales/shs_CA: Likewise.
22513 * localedata/locales/si_LK: Likewise.
22514 * localedata/locales/sid_ET: Likewise.
22515 * localedata/locales/sk_SK: Likewise.
22516 * localedata/locales/sl_SI: Likewise.
22517 * localedata/locales/sm_WS: Likewise.
22518 * localedata/locales/so_DJ: Likewise.
22519 * localedata/locales/so_ET: Likewise.
22520 * localedata/locales/so_KE: Likewise.
22521 * localedata/locales/so_SO: Likewise.
22522 * localedata/locales/sq_AL: Likewise.
22523 * localedata/locales/sq_MK: Likewise.
22524 * localedata/locales/sr_ME: Likewise.
22525 * localedata/locales/sr_RS: Likewise.
22526 * localedata/locales/sr_RS@latin: Likewise.
22527 * localedata/locales/ss_ZA: Likewise.
22528 * localedata/locales/st_ZA: Likewise.
22529 * localedata/locales/sv_FI: Likewise.
22530 * localedata/locales/sv_SE: Likewise.
22531 * localedata/locales/sw_KE: Likewise.
22532 * localedata/locales/sw_TZ: Likewise.
22533 * localedata/locales/szl_PL: Likewise.
22534 * localedata/locales/ta_IN: Likewise.
22535 * localedata/locales/ta_LK: Likewise.
22536 * localedata/locales/tcy_IN: Likewise.
22537 * localedata/locales/te_IN: Likewise.
22538 * localedata/locales/tg_TJ: Likewise.
22539 * localedata/locales/th_TH: Likewise.
22540 * localedata/locales/the_NP: Likewise.
22541 * localedata/locales/ti_ER: Likewise.
22542 * localedata/locales/ti_ET: Likewise.
22543 * localedata/locales/tig_ER: Likewise.
22544 * localedata/locales/tk_TM: Likewise.
22545 * localedata/locales/tl_PH: Likewise.
22546 * localedata/locales/tn_ZA: Likewise.
22547 * localedata/locales/to_TO: Likewise.
22548 * localedata/locales/tpi_PG: Likewise.
22549 * localedata/locales/tr_CY: Likewise.
22550 * localedata/locales/tr_TR: Likewise.
22551 * localedata/locales/ts_ZA: Likewise.
22552 * localedata/locales/tt_RU: Likewise.
22553 * localedata/locales/tt_RU@iqtelif: Likewise.
22554 * localedata/locales/ug_CN: Likewise.
22555 * localedata/locales/uk_UA: Likewise.
22556 * localedata/locales/unm_US: Likewise.
22557 * localedata/locales/ur_IN: Likewise.
22558 * localedata/locales/ur_PK: Likewise.
22559 * localedata/locales/uz_UZ: Likewise.
22560 * localedata/locales/uz_UZ@cyrillic: Likewise.
22561 * localedata/locales/ve_ZA: Likewise.
22562 * localedata/locales/vi_VN: Likewise.
22563 * localedata/locales/wa_BE: Likewise.
22564 * localedata/locales/wae_CH: Likewise.
22565 * localedata/locales/wal_ET: Likewise.
22566 * localedata/locales/wo_SN: Likewise.
22567 * localedata/locales/xh_ZA: Likewise.
22568 * localedata/locales/yi_US: Likewise.
22569 * localedata/locales/yo_NG: Likewise.
22570 * localedata/locales/yue_HK: Likewise.
22571 * localedata/locales/yuw_PG: Likewise.
22572 * localedata/locales/zh_CN: Likewise.
22573 * localedata/locales/zh_HK: Likewise.
22574 * localedata/locales/zh_SG: Likewise.
22575 * localedata/locales/zh_TW: Likewise.
22576 * localedata/locales/zu_ZA: Likewise.
22577
22578 2017-11-13 Florian Weimer <fweimer@redhat.com>
22579
22580 * support/next_to_fault.h, support/next_to_fault.c: New files.
22581 * support/Makefile (libsupport-routines): Add next_to_fault.
22582 * resolv/tst-inet_pton.c (struct next_to_fault)
22583 (next_to_fault_allocate, next_to_fault_free): Remove.
22584 (run_one_test): Switch to <support/next_to_fault.h> interfaces.
22585
22586 2017-11-13 H.J. Lu <hongjiu.lu@intel.com>
22587
22588 * elf/dl-support.c: Include <dl-procruntime.c>.
22589 * include/link.h: Include <link_map.h>.
22590 * sysdeps/generic/dl-procruntime.c: New file.
22591 * sysdeps/generic/link_map.h: Likewise.
22592 * sysdeps/generic/ldsodefs.h: Include <dl-procruntime.c> in
22593 the writable ld.so namespace.
22594
22595 2017-11-12 Paul Eggert <eggert@cs.ucla.edu>
22596
22597 timezone: pacify GCC -Wstringop-truncation
22598 Problem reported by Martin Sebor in:
22599 https://sourceware.org/ml/libc-alpha/2017-11/msg00336.html
22600 * timezone/zic.c (writezone): Use memcpy, not strncpy.
22601
22602 2017-11-12 Florian Weimer <fweimer@redhat.com>
22603
22604 * support/Makefile (libsupport-routines): Add xreadlink, xstrndup,
22605 tst-xreadlink.
22606 (tests): Add tst-xreadlink.
22607 * support/support.h (xstrndup): Declare.
22608 * support/xunistd.h (xunlink, xreadlink): Declare.
22609 * support/temp_file.h (support_create_temp_directory): Declare.
22610 * support/temp_file.c (support_create_temp_directory): New function.
22611 * support/support_chroot.c (support_chroot_create): Use it.
22612 * support/xreadlink.c: New file.
22613 * support/xstrndup.c: Likewise.
22614 * support/xunlink.c: Likewise.
22615 * support/tst-xreadlink.c: Likewise.
22616
22617 2017-11-11 John David Anglin <danglin@gcc.gnu.org>
22618
22619 * sysdeps/hppa/fpu/libm-test-ulps: Update clog10_downward ulps.
22620
22621 2017-11-11 Florian Weimer <fweimer@redhat.com>
22622
22623 [BZ #22409]
22624 [BZ #22412]
22625 * resolv/res_comp.c (printable_string, binary_hnok)
22626 (binary_leading_dash): New functions.
22627 (res_hnok): Reimplement using these functions and ns_name_pton.
22628 (res_ownok): Likewise.
22629 (res_mailok): Reimplement using printable_string, ns_name_pton and
22630 binary_hnok.
22631 (res_dnok): Reimplement using printable_string and ns_name_pton.
22632 * resolv/tst-res_hnok.c (tests): Add additional tests.
22633 (LETTERDIGITS, PRINTABLE): Define.
22634 (do_test): Adjust one_char results.
22635
22636 2017-11-11 Florian Weimer <fweimer@redhat.com>
22637
22638 [BZ #22413]
22639 * resolv/ns_name.c (ns_name_pton): Treat trailing backslash as error.
22640 * resolv/tst-ns_name_pton.c (tests): Add trailing backslash tests.
22641
22642 2017-11-11 Florian Weimer <fweimer@redhat.com>
22643
22644 * resolv/tst-ns_name_pton.c: New file.
22645 * resolv/Makefile (tests): Add tst-ns_name_pton.
22646 (tst-ns_name_pton): Link against libresolv.
22647
22648 2017-11-11 Florian Weimer <fweimer@redhat.com>
22649
22650 * resolv/tst-res_hnok.c: New file.
22651 * resolv/Makefile (tests): Add tst-res_hnok.
22652 (tst-res_hnok): Link against libresolv.
22653
22654 2017-11-11 Florian Weimer <fweimer@redhat.com>
22655
22656 * resolv/tst-resolv-network.c: Use test framework instead explicit
22657 main function.
22658
22659 2017-11-09 H.J. Lu <hongjiu.lu@intel.com>
22660
22661 * include/setjmp.h [!_ISOMAC]: Include <stddef.h> and
22662 <jmp_buf-macros.h>.
22663 [!_ISOMAC] (STR_HELPER): New.
22664 [!_ISOMAC] (STR): Likewise.
22665 [!_ISOMAC] (TEST_SIZE): Likewise.
22666 [!_ISOMAC] (TEST_ALIGN): Likewise.
22667 [!_ISOMAC] (TEST_OFFSET): Likewise.
22668 [!_ISOMAC] Add _Static_assert to check sizes, alignments and
22669 field offsets of jmp_buf as well as sigjmp_buf.
22670 * sysdeps/unix/sysv/linux/aarch64/jmp_buf-macros.h: Likewise.
22671 * sysdeps/unix/sysv/linux/alpha/jmp_buf-macros.h: Likewise.
22672 * sysdeps/unix/sysv/linux/arm/jmp_buf-macros.h: Likewise.
22673 * sysdeps/unix/sysv/linux/hppa/jmp_buf-macros.h: Likewise.
22674 * sysdeps/unix/sysv/linux/i386/jmp_buf-macros.h: Likewise.
22675 * sysdeps/unix/sysv/linux/ia64/jmp_buf-macros.h: Likewise.
22676 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Likewise.
22677 * sysdeps/unix/sysv/linux/microblaze/jmp_buf-macros.h: Likewise.
22678 * sysdeps/unix/sysv/linux/mips/mips32/jmp_buf-macros.h: Likewise.
22679 * sysdeps/unix/sysv/linux/mips/mips64/n32/jmp_buf-macros.h:
22680 Likewise.
22681 * sysdeps/unix/sysv/linux/mips/mips64/n64/jmp_buf-macros.h:
22682 Likewise.
22683 * sysdeps/unix/sysv/linux/nios2/jmp_buf-macros.h: Likewise.
22684 * sysdeps/unix/sysv/linux/powerpc/powerpc32/jmp_buf-macros.h:
22685 Likewise.
22686 * sysdeps/unix/sysv/linux/powerpc/powerpc64/jmp_buf-macros.h:
22687 Likewise.
22688 * sysdeps/unix/sysv/linux/s390/s390-32/jmp_buf-macros.h: Likewise.
22689 * sysdeps/unix/sysv/linux/s390/s390-64/jmp_buf-macros.h: Likewise.
22690 * sysdeps/unix/sysv/linux/sh/jmp_buf-macros.h: Likewise.
22691 * sysdeps/unix/sysv/linux/sparc/sparc32/jmp_buf-macros.h: Likewise.
22692 * sysdeps/unix/sysv/linux/sparc/sparc64/jmp_buf-macros.h: Likewise.
22693 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/jmp_buf-macros.h:
22694 Likewise.
22695 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/jmp_buf-macros.h:
22696 Likewise.
22697 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
22698 * sysdeps/unix/sysv/linux/x86_64/64/jmp_buf-macros.h: Likewise.
22699 * sysdeps/unix/sysv/linux/x86_64/x32/jmp_buf-macros.h: Likewise.
22700
22701 2017-11-07 Joseph Myers <joseph@codesourcery.com>
22702
22703 * include/float.h
22704 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22705 && __HAVE_FLOAT32] (FLT32_MANT_DIG): New macro.
22706 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22707 && __HAVE_FLOAT32] (FLT32_DECIMAL_DIG): Likewise.
22708 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22709 && __HAVE_FLOAT32] (FLT32_DIG): Likewise.
22710 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22711 && __HAVE_FLOAT32] (FLT32_MIN_EXP): Likewise.
22712 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22713 && __HAVE_FLOAT32] (FLT32_MIN_10_EXP): Likewise.
22714 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22715 && __HAVE_FLOAT32] (FLT32_MAX_EXP): Likewise.
22716 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22717 && __HAVE_FLOAT32] (FLT32_MAX_10_EXP): Likewise.
22718 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22719 && __HAVE_FLOAT32] (FLT32_MAX): Likewise.
22720 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22721 && __HAVE_FLOAT32] (FLT32_EPSILON): Likewise.
22722 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22723 && __HAVE_FLOAT32] (FLT32_MIN): Likewise.
22724 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22725 && __HAVE_FLOAT32] (FLT32_TRUE_MIN): Likewise.
22726 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22727 && __HAVE_FLOAT64] (FLT64_MANT_DIG): Likewise.
22728 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22729 && __HAVE_FLOAT64] (FLT64_DECIMAL_DIG): Likewise.
22730 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22731 && __HAVE_FLOAT64] (FLT64_DIG): Likewise.
22732 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22733 && __HAVE_FLOAT64] (FLT64_MIN_EXP): Likewise.
22734 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22735 && __HAVE_FLOAT64] (FLT64_MIN_10_EXP): Likewise.
22736 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22737 && __HAVE_FLOAT64] (FLT64_MAX_EXP): Likewise.
22738 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22739 && __HAVE_FLOAT64] (FLT64_MAX_10_EXP): Likewise.
22740 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22741 && __HAVE_FLOAT64] (FLT64_MAX): Likewise.
22742 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22743 && __HAVE_FLOAT64] (FLT64_EPSILON): Likewise.
22744 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22745 && __HAVE_FLOAT64] (FLT64_MIN): Likewise.
22746 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22747 && __HAVE_FLOAT64] (FLT64_TRUE_MIN): Likewise.
22748 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22749 && __HAVE_FLOAT32X] (FLT32X_MANT_DIG): Likewise.
22750 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22751 && __HAVE_FLOAT32X] (FLT32X_DECIMAL_DIG): Likewise.
22752 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22753 && __HAVE_FLOAT32X] (FLT32X_DIG): Likewise.
22754 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22755 && __HAVE_FLOAT32X] (FLT32X_MIN_EXP): Likewise.
22756 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22757 && __HAVE_FLOAT32X] (FLT32X_MIN_10_EXP): Likewise.
22758 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22759 && __HAVE_FLOAT32X] (FLT32X_MAX_EXP): Likewise.
22760 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22761 && __HAVE_FLOAT32X] (FLT32X_MAX_10_EXP): Likewise.
22762 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22763 && __HAVE_FLOAT32X] (FLT32X_MAX): Likewise.
22764 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22765 && __HAVE_FLOAT32X] (FLT32X_EPSILON): Likewise.
22766 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22767 && __HAVE_FLOAT32X] (FLT32X_MIN): Likewise.
22768 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22769 && __HAVE_FLOAT32X] (FLT32X_TRUE_MIN): Likewise.
22770 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22771 && __HAVE_FLOAT64X] (FLT64X_MANT_DIG): Likewise.
22772 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22773 && __HAVE_FLOAT64X] (FLT64X_DECIMAL_DIG): Likewise.
22774 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22775 && __HAVE_FLOAT64X] (FLT64X_DIG): Likewise.
22776 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22777 && __HAVE_FLOAT64X] (FLT64X_MIN_EXP): Likewise.
22778 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22779 && __HAVE_FLOAT64X] (FLT64X_MIN_10_EXP): Likewise.
22780 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22781 && __HAVE_FLOAT64X] (FLT64X_MAX_EXP): Likewise.
22782 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22783 && __HAVE_FLOAT64X] (FLT64X_MAX_10_EXP): Likewise.
22784 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22785 && __HAVE_FLOAT64X] (FLT64X_MAX): Likewise.
22786 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22787 && __HAVE_FLOAT64X] (FLT64X_EPSILON): Likewise.
22788 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22789 && __HAVE_FLOAT64X] (FLT64X_MIN): Likewise.
22790 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22791 && __HAVE_FLOAT64X] (FLT64X_TRUE_MIN): Likewise.
22792
22793 * stdlib/tst-strtod.h (F16): New macro.
22794 (F32): Likewise.
22795 (F64): Likewise.
22796 (F32X): Likewise.
22797 (F64X): Likewise.
22798 (F128X): Likewise.
22799 (IF_FLOAT16): Likewise.
22800 (IF_FLOAT32): Likewise.
22801 (IF_FLOAT64): Likewise.
22802 (IF_FLOAT32X): Likewise.
22803 (IF_FLOAT64X): Likewise.
22804 (IF_FLOAT128X): Likewise.
22805 (GEN_TEST_STRTOD_FOREACH): Conditionally call macros for _Float16,
22806 _Float32, _Float64, _Float32x, _Float64x and _Float128x.
22807 (STRTOD_TEST_FOREACH): Likewise.
22808 * stdlib/tst-strtod-round-skeleton.c (CHOOSE_f32): New macro.
22809 (CHOOSE_f64): Likewise.
22810 (CHOOSE_f32x): Likewise.
22811 (CHOOSE_f64x): Likewise.
22812
22813 2017-11-07 Andreas Schwab <schwab@suse.de>
22814
22815 * nptl/Makefile (tests-internal): Remove tst-typesizes.
22816
22817 2017-11-07 Mike FABIAN <mfabian@redhat.com>
22818
22819 [BZ #22403]
22820 * localedata/locales/mfe_MU (LC_TIME): Fix wrong d_fmt, / needs
22821 to be escaped.
22822 * localedata/locales/miq_NI (LC_TIME): Fix wrong d_fmt, / needs
22823 to be escaped.
22824
22825 2017-11-07 Claude Paroz <claude@2xlibre.net>
22826
22827 [BZ #22403]
22828 * localedata/locales/an_ES (LC_TIME): Fix wrong d_fmt, / needs
22829 to be escaped.
22830 * localedata/locales/kab_DZ (LC_TIME): Fix wrong d_fmt, / needs
22831 to be escaped.
22832 * localedata/locales/om_ET (LC_TIME): Fix wrong d_fmt, / needs
22833 to be escaped.
22834
22835 2017-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22836
22837 [BZ #22298]
22838 * nptl/allocatestack.c (allocate_stack): Check if
22839 __PTHREAD_MUTEX_HAVE_PREV is non-zero, instead if
22840 __PTHREAD_MUTEX_HAVE_PREV is defined.
22841 * nptl/descr.h (pthread): Likewise.
22842 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
22843 Likewise.
22844 * nptl/pthread_create.c (START_THREAD_DEFN): Likewise.
22845 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
22846 * sysdeps/nptl/pthread.h (PTHREAD_MUTEX_INITIALIZER): Likewise.
22847 * sysdeps/nptl/bits/thread-shared-types.h
22848 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
22849 defines.
22850 (__pthread_internal_list): Check __PTHREAD_MUTEX_USE_UNION instead
22851 of __WORDSIZE for internal layout.
22852 (__pthread_mutex_s): Check __PTHREAD_MUTEX_NUSERS_AFTER_KIND instead
22853 of __WORDSIZE for internal __nusers layout and __PTHREAD_MUTEX_USE_UNION
22854 instead of __WORDSIZE whether to use an union for __spins and __list
22855 fields.
22856 (__PTHREAD_MUTEX_HAVE_PREV): Define also for __PTHREAD_MUTEX_USE_UNION
22857 case.
22858 * sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h
22859 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
22860 defines.
22861 * sysdeps/alpha/nptl/bits/pthreadtypes-arch.h
22862 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22863 Likewise.
22864 * sysdeps/arm/nptl/bits/pthreadtypes-arch.h
22865 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22866 Likewise.
22867 * sysdeps/hppa/nptl/bits/pthreadtypes-arch.h
22868 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22869 Likewise.
22870 * sysdeps/ia64/nptl/bits/pthreadtypes-arch.h
22871 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22872 Likewise.
22873 * sysdeps/m68k/nptl/bits/pthreadtypes-arch.h
22874 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22875 Likewise.
22876 * sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h
22877 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22878 Likewise.
22879 * sysdeps/mips/nptl/bits/pthreadtypes-arch.h
22880 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22881 Likewise.
22882 * sysdeps/nios2/nptl/bits/pthreadtypes-arch.h
22883 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22884 Likewise.
22885 * sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h
22886 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22887 Likewise.
22888 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h
22889 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22890 Likewise.
22891 * sysdeps/sh/nptl/bits/pthreadtypes-arch.h
22892 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22893 Likewise.
22894 * sysdeps/sparc/nptl/bits/pthreadtypes-arch.h
22895 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22896 Likewise.
22897 * sysdeps/tile/nptl/bits/pthreadtypes-arch.h
22898 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22899 Likewise.
22900 * sysdeps/x86/nptl/bits/pthreadtypes-arch.h
22901 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22902 Likewise.
22903
22904 * nptl/pthreadP.h (ASSERT_TYPE_SIZE, ASSERT_PTHREAD_INTERNAL_SIZE):
22905 New macros.
22906 * nptl/pthread_attr_init.c (__pthread_mutex_init): Add build time
22907 checks for expected input type size.
22908 * nptl/pthread_barrier_init.c (__pthread_barrier_init): Likewise.
22909 * nptl/pthread_barrierattr_init.c (pthread_barrierattr_init):
22910 Likewise.
22911 * nptl/pthread_cond_init.c (__pthread_cond_init): Likewise.
22912 * nptl/pthread_condattr_init.c (__pthread_condattr_init): Likewise.
22913 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
22914 * nptl/pthread_mutexattr_init.c (__pthread_mutexattr_init): Likewise.
22915 * nptl/pthread_rwlock_init.c (__pthread_rwlock_init): Likewise.
22916 * nptl/pthread_rwlockattr_init.c (pthread_rwlockattr_init): Likewise.
22917 * nptl/sem_init.c (__new_sem_init, __old_sem_init): Likewise
22918 * nptl/pthread_attr_destroy.c (__pthread_attr_destroy): Remove
22919 superflous runtime assert check.
22920 * nptl/pthread_attr_getaffinity.c (__pthread_attr_getaffinity_new):
22921 Likewise.
22922 * nptl/pthread_attr_getdetachstate.c (__pthread_attr_getdetachstate):
22923 Likewise.
22924 * nptl/pthread_attr_getguardsize.c (pthread_attr_getguardsize):
22925 Likewise.
22926 * nptl/pthread_attr_getinheritsched.c (__pthread_attr_getinheritsched):
22927 Likewise.
22928 * nptl/pthread_attr_getschedparam.c (__pthread_attr_getschedparam):
22929 Likewise.
22930 * nptl/pthread_attr_getschedpolicy.c (__pthread_attr_getschedpolicy):
22931 Likewise.
22932 * nptl/pthread_attr_getscope.c (__pthread_attr_getscope): Likewise.
22933 * nptl/pthread_attr_getstack.c (__pthread_attr_getstack): Likewise.
22934 * nptl/pthread_attr_getstackaddr.c (__pthread_attr_getstackaddr):
22935 Likewise.
22936 * nptl/pthread_attr_getstacksize.c (__pthread_attr_getstacksize):
22937 Likewise.
22938 * nptl/pthread_attr_setaffinity.c (__pthread_attr_setaffinity_new):
22939 Likewise.
22940 * nptl/pthread_attr_setdetachstate.c (__pthread_attr_setdetachstate):
22941 Likewise.
22942 * nptl/pthread_attr_setguardsize.c (pthread_attr_setguardsize):
22943 Likewise.
22944 * nptl/pthread_attr_setinheritsched.c
22945 (__pthread_attr_setinheritsched): Likewise.
22946 * nptl/pthread_attr_setschedparam.c (__pthread_attr_setschedparam):
22947 Likewise.
22948 * nptl/pthread_attr_setschedpolicy.c (__pthread_attr_setschedpolicy):
22949 Likewise.
22950 * nptl/pthread_attr_setscope.c (__pthread_attr_setscope): Likewise.
22951 * nptl/pthread_attr_setstack.c (__pthread_attr_setstack,
22952 __old_pthread_attr_setstack): Likewise.
22953 * nptl/pthread_attr_setstackaddr.c (__pthread_attr_setstackaddr):
22954 Likewise.
22955 * nptl/pthread_attr_setstacksize.c (__pthread_attr_setstacksize):
22956 Likewise.
22957 * nptl/pthread_getattr_default_np.c (pthread_getattr_default_np):
22958 Likewise.
22959 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Likewise.
22960 * nptl/pthread_setattr_default_np.c (pthread_setattr_default_np):
22961 Likewise.
22962 * nptl/tst-typesizes.c: Remove file.
22963
22964 * nptl/pthreadP.h (ASSERT_PTHREAD_STRING,
22965 ASSERT_PTHREAD_INTERNAL_OFFSET): New macro.
22966 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Add build time
22967 checks for internal pthread_mutex_t offsets.
22968 * sysdeps/aarch64/nptl/pthread-offsets.h
22969 (__PTHREAD_MUTEX_NUSERS_OFFSET, __PTHREAD_MUTEX_KIND_OFFSET,
22970 __PTHREAD_MUTEX_SPINS_OFFSET, __PTHREAD_MUTEX_ELISION_OFFSET,
22971 __PTHREAD_MUTEX_LIST_OFFSET): New macro.
22972 * sysdeps/alpha/nptl/pthread-offsets.h: Likewise.
22973 * sysdeps/arm/nptl/pthread-offsets.h: Likewise.
22974 * sysdeps/hppa/nptl/pthread-offsets.h: Likewise.
22975 * sysdeps/i386/nptl/pthread-offsets.h: Likewise.
22976 * sysdeps/ia64/nptl/pthread-offsets.h: Likewise.
22977 * sysdeps/m68k/nptl/pthread-offsets.h: Likewise.
22978 * sysdeps/microblaze/nptl/pthread-offsets.h: Likewise.
22979 * sysdeps/mips/nptl/pthread-offsets.h: Likewise.
22980 * sysdeps/nios2/nptl/pthread-offsets.h: Likewise.
22981 * sysdeps/powerpc/nptl/pthread-offsets.h: Likewise.
22982 * sysdeps/s390/nptl/pthread-offsets.h: Likewise.
22983 * sysdeps/sh/nptl/pthread-offsets.h: Likewise.
22984 * sysdeps/sparc/nptl/pthread-offsets.h: Likewise.
22985 * sysdeps/tile/nptl/pthread-offsets.h: Likewise.
22986 * sysdeps/x86_64/nptl/pthread-offsets.h: Likewise.
22987
22988 2017-11-07 Florian Weimer <fweimer@redhat.com>
22989
22990 * bits/mman-linux.h: Move ...
22991 * sysdeps/unix/sysv/linux/bits/mman-linux.h: ... here. Update
22992 comment.
22993 * sysdeps/unix/sysv/linux/bits/Makefile (sysdep_headers): Remove
22994 outdated comment.
22995
22996 2017-11-07 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
22997
22998 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S (STRNLEN):
22999 Redefine STRNLEN as __strnlen_power8.
23000
23001 2017-11-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23002
23003 * signal/sighold.c (sighold): Optimize implementation.
23004
23005 * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Asssume
23006 __NR_rt_sigqueueinfo.
23007
23008 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
23009 __sigtimedwait.
23010 * sysdeps/unix/sysv/linux/sigtimedwait.c: Simplify includes and
23011 assume __NR_rt_sigtimedwait.
23012 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Call __sigtimedwait
23013 and add LIBC_CANCEL_HANDLED for cancellation marking.
23014 * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
23015
23016 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
23017 (sysdeps_routines): Add memchr_noneon.
23018 * sysdeps/arm/armv7/multiarch/ifunc-memchr.h: New file.
23019 * sysdeps/arm/armv7/multiarch/memchr_noneon.S: Likewise.
23020 * sysdeps/arm/armv7/multiarch/rtld-memchr.S: Likewise.
23021 * sysdeps/arm/armv7/multiarch/memchr.S: Remove file.
23022 * sysdeps/arm/armv7/multiarch/memchr.c: New file.
23023 * sysdeps/arm/armv7/multiarch/memchr_impl.S: Move to ...
23024 * sysdeps/arm/armv7/multiarch/memchr_neon.S: ... here.
23025
23026 * sysdeps/arm/arm-ifunc.h: New file.
23027 * sysdeps/arm/armv7/multiarch/ifunc-memcpy.h: Likewise.
23028 * sysdeps/arm/armv7/multiarch/memcpy.c: Likewise.
23029 * sysdeps/arm/armv7/multiarch/memcpy_arm.S: Likewise.
23030 * sysdeps/arm/armv7/multiarch/rtld-memcpy.S: Likewise.
23031 * sysdeps/arm/armv7/multiarch/memcpy_neon.S [!__ARM_NEON__]
23032 (__memcpy_neon): Avoid create hidden alias.
23033 * sysdeps/arm/armv7/multiarch/memcpy_vfp.S [!__ARM_NEON_]
23034 (__memcpy_vfp): Likewise.
23035 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
23036 (sysdep_routines): Add memcpy_arm.
23037 * sysdeps/arm/armv7/multiarch/memcpy.S: Remove file.
23038
23039 2017-11-06 H.J. Lu <hongjiu.lu@intel.com>
23040
23041 [BZ #22362]
23042 * Makerules (make-link-multidir): New.
23043 * config.make.in (multidir): New.
23044 * configure.ac (libc_cv_multidir): New. AC_SUBST.
23045 * configure: Regenerated.
23046 * csu/Makefile [$(multidir) != .](multilib-extra-objs): New.
23047 [$(multidir) != .](extra-objs): Add $(multilib-extra-objs).
23048 [$(multidir) != .]($(addprefix $(objpfx)$(multidir)/, $(install-lib))):
23049 New target.
23050
23051 2017-11-06 Joseph Myers <joseph@codesourcery.com>
23052
23053 [BZ #22402]
23054 * sysdeps/powerpc/bits/floatn.h: Include <bits/long-double.h>.
23055 [__NO_LONG_DOUBLE_MATH] (__HAVE_FLOAT128): Define to 0.
23056
23057 2017-11-04 Mike FABIAN <mfabian@redhat.com>
23058
23059 * localedata/locales/tpi_PG (LC_TIME): Fix wrong d_fmt, / needs
23060 to be escaped.
23061
23062 2017-11-04 Florian Weimer <fweimer@redhat.com>
23063
23064 * manual/llio.texi (Open-time Flags): Document O_TMPFILE.
23065
23066 2017-11-03 Joseph Myers <joseph@codesourcery.com>
23067
23068 * math/math.h [__HAVE_DISTINCT_FLOAT16
23069 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
23070 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
23071 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
23072 [__NO_LONG_DOUBLE_MATH && __HAVE_DISTINCT_FLOAT128]: Likewise.
23073 [__HAVE_DISTINCT_FLOAT128 && !__HAVE_GENERIC_SELECTION
23074 && __HAVE_FLOATN_NOT_TYPEDEF]: Likewise.
23075 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23076 (__MATH_TG_F32): New macro.
23077 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23078 (__MATH_TG_F64X): Likewise.
23079 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23080 (__MATH_TG): Use __MATH_TG_F32 and __MATH_TG_F64X.
23081
23082 2017-11-03 Dmitry V. Levin <ldv@altlinux.org>
23083
23084 * po/de.po: Update translations.
23085 * po/ru.po: Likewise.
23086
23087 2017-11-03 Florian Weimer <fweimer@redhat.com>
23088
23089 * manual/filesys.texi (Hard Links): Document linkat.
23090
23091 2017-11-03 Joseph Myers <joseph@codesourcery.com>
23092
23093 * math/tgmath.h [__HAVE_DISTINCT_FLOAT16
23094 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
23095 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
23096 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
23097 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
23098 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
23099 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_F128): Handle _Float64x
23100 the same as _Float128.
23101 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
23102 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
23103 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_CF128): Likewise.
23104
23105 * stdlib/stdlib.h
23106 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof16):
23107 Declare.
23108 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof32):
23109 Likewise.
23110 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof64):
23111 Likewise.
23112 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23113 (strtof32x): Likewise.
23114 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23115 (strtof64x): Likewise.
23116 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23117 (strtof128x): Likewise.
23118 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23119 (strfromf16): Likewise.
23120 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23121 (strfromf32): Likewise.
23122 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23123 (strfromf64): Likewise.
23124 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23125 (strfromf32x): Likewise.
23126 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23127 (strfromf64x): Likewise.
23128 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23129 (strfromf128x): Likewise.
23130 [__USE_GNU && __HAVE_FLOAT16] (strtof16_l): Likewise.
23131 [__USE_GNU && __HAVE_FLOAT32] (strtof32_l): Likewise.
23132 [__USE_GNU && __HAVE_FLOAT64] (strtof64_l): Likewise.
23133 [__USE_GNU && __HAVE_FLOAT32X] (strtof32x_l): Likewise.
23134 [__USE_GNU && __HAVE_FLOAT64X] (strtof64x_l): Likewise.
23135 [__USE_GNU && __HAVE_FLOAT128X] (strtof128x_l): Likewise.
23136
23137 2017-11-03 Richard Henderson <rth@twiddle.net>
23138
23139 * sysdeps/unix/sysv/linux/aarch64/sysconf.c: New file.
23140
23141 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23142
23143 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Optimize.
23144
23145 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23146
23147 * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Remove
23148 DT_TLSDESC_GOT initialization.
23149 * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_lazy_resolver): Remove.
23150 (_dl_tlsdesc_resolve_hold): Likewise.
23151 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_lazy_resolver): Remove.
23152 (_dl_tlsdesc_resolve_hold): Likewise.
23153 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_lazy_resolver_fixup): Remove.
23154 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
23155
23156 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23157
23158 * sysdeps/arm/dl-machine.h (elf_machine_rel): Remove volatile.
23159
23160 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23161
23162 [BZ #18572]
23163 * sysdeps/arm/dl-machine.h (elf_machine_lazy_rel): Do symbol binding
23164 non-lazily for R_ARM_TLS_DESC.
23165
23166 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23167
23168 [BZ #17078]
23169 * sysdeps/arm/dl-machine.h (elf_machine_rela): Remove the
23170 R_ARM_TLS_DESC case.
23171 (elf_machine_lazy_rel): Remove the prelink check.
23172
23173 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23174
23175 * sysdeps/aarch64/dl-machine.h (elf_machine_runtime_setup): Remove
23176 DT_TLSDESC_GOT initialization.
23177 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_return_lazy): Remove.
23178 (_dl_tlsdesc_resolve_rela): Likewise.
23179 (_dl_tlsdesc_resolve_hold): Likewise.
23180 (_dl_tlsdesc_undefweak): Remove ldar.
23181 (_dl_tlsdesc_dynamic): Likewise.
23182 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_return_lazy): Remove.
23183 (_dl_tlsdesc_resolve_rela): Likewise.
23184 (_dl_tlsdesc_resolve_hold): Likewise.
23185 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_resolve_rela_fixup): Remove.
23186 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
23187 (_dl_tlsdesc_resolve_rela): Likewise.
23188 (_dl_tlsdesc_resolve_hold): Likewise.
23189
23190 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23191
23192 * sysdeps/aarch64/dl-machine.h (elf_machine_lazy_rel): Do symbol
23193 binding and initialization non-lazily for R_AARCH64_TLSDESC.
23194
23195 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23196
23197 * elf/tlsdeschtab.h (_dl_tls_resolve_early_return_p): Mark unused.
23198 (_dl_tlsdesc_wake_up_held_fixups): Likewise.
23199
23200 2017-11-02 Joseph Myers <joseph@codesourcery.com>
23201
23202 * wcsmbs/wchar.h [__HAVE_FLOAT16 && __USE_GNU] (wcstof16):
23203 Declare.
23204 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32): Likewise.
23205 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64): Likewise.
23206 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x): Likewise.
23207 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x): Likewise.
23208 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x): Likewise.
23209 [__HAVE_FLOAT16 && __USE_GNU] (wcstof16_l): Likewise.
23210 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32_l): Likewise.
23211 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64_l): Likewise.
23212 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x_l): Likewise.
23213 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x_l): Likewise.
23214 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x_l): Likewise.
23215
23216 2017-11-02 Mike FABIAN <mfabian@redhat.com>
23217
23218 [BZ #22382]
23219 * localedata/locales/tpi_PG (LC_TIME): Fix syntax error.
23220 * localedata/locales/tpi_PG: Add standard header.
23221
23222 2017-11-02 Florian Weimer <fweimer@redhat.com>
23223
23224 test-errno-linux: quotactl can fail with EPERM in containers.
23225 * sysdeps/unix/sysv/linux/test-errno-linux.c
23226 (LIST, LIST_FORWARD): New macros.
23227 (check_error_in_list): New function.
23228 (test_wrp_rv): Accept list of permitted error codes.
23229 (test_wrp_rv2): Remove.
23230 (test_wrp): Call test_wrp_rv with list of error codes.
23231 (test_wrp2): Accept list of error codes.
23232 (do_test): Adjust. Allow EPERM for quotactl.
23233
23234 2017-11-02 Florian Weimer <fweimer@redhat.com>
23235
23236 * stdio-common/bug16.c (do_test): Use array_length.
23237 * stdio-common/errlist.c (_sys_nerr): Likewise.
23238 * stdio-common/printf_fp.c (PRINTF_FP_FETCH): Likewise.
23239 * stdio-common/printf_fphex.c (__printf_fphex): Use array_end.
23240 * stdio-common/psiginfo.c (psiginfo): Use array_length.
23241 * stdio-common/test-vfprintf.c (nlocs): Remove definition.
23242 (do_test): Use array_length.
23243 * stdio-common/tst-fphex.c (do_test): Use array_end, array_length.
23244 * stdio-common/tst-long-dbl-fphex.c (do_test): Use array_length.
23245 * stdio-common/tst-printf-round.c (do_test): Likewise.
23246 * stdio-common/tst-swprintf.c (nbuf): Remove definition.
23247 (CHECK): Use array_length.
23248 * stdio-common/tstdiomisc.c (t3, F): Likewise.
23249 * stdio-common/tstscanf.c (main): Likewise.
23250 * stdio-common/vfprintf.c (process_string_arg): Likewise.
23251
23252 2017-11-02 Florian Weimer <fweimer@redhat.com>
23253
23254 Add array_length and array_end macros.
23255 * include/array_length.h: New file.
23256
23257 2017-11-02 Florian Weimer <fweimer@redhat.com>
23258
23259 [BZ #22332]
23260 * posix/tst-glob-tilde.c (do_noescape): New variable.
23261 (one_test): Process it.
23262 (do_test): Set do_noescape. Add unescaping test case.
23263
23264 2017-11-01 Joseph Myers <joseph@codesourcery.com>
23265
23266 * math/complex.h
23267 [(__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC))
23268 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Include <bits/cmathcalls.h>
23269 with appropriate macros defined and undefined.
23270 [(__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC))
23271 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23272 [(__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC))
23273 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23274 [(__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC))
23275 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23276 [(__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC))
23277 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23278 [(__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC))
23279 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23280
23281 * math/complex.h
23282 [(__HAVE_DISTINCT_FLOAT128 || (__HAVE_FLOAT128 && !LIBC))
23283 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Move conditional code after
23284 that for long double. Do not condition define and undefine of
23285 _Mdouble_complex_ on [__CFLOAT128].
23286
23287 2017-11-01 H.J. Lu <hongjiu.lu@intel.com>
23288
23289 * sysdeps/i386/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
23290 of <sysdeps/generic/sysdep.h>.
23291 (ALIGNARG): Removed.
23292 (ASM_SIZE_DIRECTIVE): Likewise.
23293 (ENTRY): Likewise.
23294 (END): Likewise.
23295 (ENTRY_CHK): Likewise.
23296 (END_CHK): Likewise.
23297 (syscall_error): Likewise.
23298 (mcount): Likewise.
23299 (PSEUDO_END): Likewise.
23300 (L): Likewise.
23301 (atom_text_section): Likewise.
23302 * sysdeps/x86/sysdep.h: New file.
23303 * sysdeps/x86_64/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
23304 of <sysdeps/generic/sysdep.h>.
23305 (ALIGNARG): Removed.
23306 (ASM_SIZE_DIRECTIVE): Likewise.
23307 (ENTRY): Likewise.
23308 (END): Likewise.
23309 (ENTRY_CHK): Likewise.
23310 (END_CHK): Likewise.
23311 (syscall_error): Likewise.
23312 (mcount): Likewise.
23313 (PSEUDO_END): Likewise.
23314 (L): Likewise.
23315 (atom_text_section): Likewise.
23316
23317 2017-10-31 Rafal Luzynski <digitalfreak@lingonborough.com>
23318
23319 * localedata/unicode-gen/gen_unicode_ctype.py (output_head):
23320 category of LC_CTYPE set to "i18n:2012".
23321 * localedata/locales/i18n_ctype: Regenerate.
23322
23323 2017-10-31 Yury Norov <ynorov@caviumnetworks.com>
23324
23325 * sysdeps/unix/sysv/linux/sigprocmask.c: Remove useless #ifdefs.
23326 * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
23327 * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
23328 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
23329
23330 * sysdeps/unix/sysv/linux/ia64/sigpending.c: Remove file.
23331 * sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c: Likewise.
23332 * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Likewise.
23333 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Likewise.
23334
23335 2017-10-31 Joseph Myers <joseph@codesourcery.com>
23336
23337 * math/complex.h
23338 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF16):
23339 New macro.
23340 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF32):
23341 Likewise.
23342 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF64):
23343 Likewise.
23344 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23345 (CMPLXF32X): Likewise.
23346 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23347 (CMPLXF64X): Likewise.
23348 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23349 (CMPLXF128X): Likewise.
23350
23351 * math/math.h
23352 [__FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == 32]
23353 (__MATH_EVAL_FMT2): Define to add 0.0f.
23354
23355 2017-10-31 Alan Modra <amodra@gmail.com>
23356
23357 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-power8.S: Don't
23358 include sysdep.h.
23359 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: Likewise.
23360 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: Likewise.
23361 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
23362 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
23363 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: Likewise.
23364 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: Likewise.
23365 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: Likewise.
23366 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: Likewise.
23367 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: Likewise.
23368 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: Likewise.
23369 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
23370 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
23371 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: Likewise.
23372 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: Likewise.
23373 * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: Likewise.
23374 * sysdeps/powerpc/powerpc64/multiarch/memchr-power8.S: Likewise.
23375 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: Likewise.
23376 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: Likewise.
23377 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power8.S: Likewise.
23378 * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: Likewise.
23379 * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: Likewise.
23380 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: Likewise.
23381 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: Likewise.
23382 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: Likewise.
23383 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
23384 * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: Likewise.
23385 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: Likewise.
23386 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: Likewise.
23387 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S: Likewise.
23388 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: Likewise.
23389 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
23390 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
23391 * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: Likewise.
23392 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: Likewise.
23393 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: Likewise.
23394 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: Likewise.
23395 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Likewise.
23396 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Likewise.
23397 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power8.S: Likewise.
23398 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
23399 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S: Likewise.
23400 * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: Likewise.
23401 * sysdeps/powerpc/powerpc64/multiarch/strchr-power8.S: Likewise.
23402 * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: Likewise.
23403 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: Likewise.
23404 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power8.S: Likewise.
23405 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: Likewise.
23406 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Likewise.
23407 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
23408 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
23409 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: Likewise.
23410 * sysdeps/powerpc/powerpc64/multiarch/strcspn-power8.S: Likewise.
23411 * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: Likewise.
23412 * sysdeps/powerpc/powerpc64/multiarch/strlen-power8.S: Likewise.
23413 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
23414 * sysdeps/powerpc/powerpc64/multiarch/strncase-power8.S: Likewise.
23415 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: Likewise.
23416 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: Likewise.
23417 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
23418 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
23419 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
23420 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: Likewise.
23421 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: Likewise.
23422 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
23423 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power8.S: Likewise.
23424 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: Likewise.
23425 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power8.S: Likewise.
23426 * sysdeps/powerpc/powerpc64/multiarch/strspn-power8.S: Likewise.
23427 * sysdeps/powerpc/powerpc64/multiarch/strstr-power7.S: Likewise.
23428
23429 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: Don't
23430 include sysdep.h and math_ldbl_opt.h.
23431
23432 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: Don't
23433 include sysdep.h and math_ldbl_opt.h. Include shlib-compat.h.
23434 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: Likewise.
23435 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: Likewise.
23436 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: Likewise.
23437 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: Likewise.
23438 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: Likewise.
23439 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: Likewise.
23440 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: Likewise.
23441 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: Likewise.
23442 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: Likewise.
23443 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: Likewise.
23444 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: Likewise.
23445 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: Likewise.
23446 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: Likewise.
23447 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: Likewise.
23448 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: Likewise.
23449 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: Likewise.
23450 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: Likewise.
23451 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: Likewise.
23452 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: Likewise.
23453 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf-ppc64.S: Likewise.
23454 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: Likewise.
23455 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: Likewise.
23456 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: Likewise.
23457 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: Likewise.
23458
23459 2017-10-31 Alan Modra <amodra@gmail.com>
23460
23461 * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: Include
23462 string/strncase_l.c, not string/strncase.c.
23463 (USE_IN_EXTENDED_LOCALE_MODEL): Don't define.
23464 (libc_hidden_def): Redefine.
23465
23466 2017-10-31 Alan Modra <amodra@gmail.com>
23467
23468 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S:
23469 (__STRCMP, STRCMP, __strcasecmp_l): Define.
23470 (__strcasecmp): Don't define.
23471
23472 2017-10-31 Alan Modra <amodra@gmail.com>
23473
23474 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Wrap in
23475 IS_IN (libc).
23476 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
23477 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
23478 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
23479
23480 2017-10-31 Alan Modra <amodra@gmail.com>
23481
23482 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Don't define
23483 USE_AS_STPNCPY.
23484
23485 2017-10-31 Alan Modra <amodra@gmail.com>
23486
23487 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S (hidden_def):
23488 Redefine only when SHARED.
23489
23490 2017-10-30 Joseph Myers <joseph@codesourcery.com>
23491
23492 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
23493 Include <bits/math-finite.h> with appropriate macros defined and
23494 undefined.
23495 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
23496 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
23497 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
23498 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
23499 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
23500
23501 * math/math.h [!_Mfloat_] (_Mfloat_): Do not define.
23502 [!_Mlong_double_] (_Mlong_double_): Likewise.
23503 [!_Mfloat16_] (_Mfloat16_): Likewise.
23504 [!_Mfloat32_] (_Mfloat32_): Likewise.
23505 [!_Mfloat64_] (_Mfloat64_): Likewise.
23506 [!_Mfloat128_] (_Mfloat128_): Likewise.
23507 [!_Mfloat32x_] (_Mfloat32x_): Likewise.
23508 [!_Mfloat64x_] (_Mfloat64x_): Likewise.
23509 [!_Mfloat128x_] (_Mfloat128x_): Likewise.
23510 (_Mdouble_): Define without indirection through those macros.
23511 * math/complex.h [!_Mfloat_] (_Mfloat_): Do not define.
23512 [!_Mfloat128_] (_Mfloat128_): Likewise.
23513 [_Mlong_double_] (_Mlong_double_): Likewise.
23514 (_Mdouble_): Define without indirection through those macros.
23515 * math/Makefile [$(long-double-fcts) != yes] (math-CPPFLAGS): Do
23516 not add -D_Mlong_double_=double.
23517 * include/math.h [_ISOMAC] (_Mlong_double_): Do not undefine.
23518 * math/test-signgam-finite-c99.c (_Mlong_double_): Likewise.
23519
23520 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23521
23522 * sysdeps/x86/libc-start.c: Add /* !SHARED */.
23523
23524 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23525
23526 * sysdeps/x86/libc-start.c: Reformat.
23527
23528 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23529
23530 [BZ #22353]
23531 * sysdeps/i386/i586/strcpy.S (STRCPY): Use conditional branches.
23532 (1): Renamed to ...
23533 (L(Src0)): This.
23534 (L(Src1)): New.
23535 (L(Src2)): Likewise.
23536 (L(1)): Renamed to ...
23537 (L(Src3)): This.
23538
23539 2017-10-30 Joseph Myers <joseph@codesourcery.com>
23540
23541 * math/math.h [__HAVE_FLOAT16 && __USE_GNU] (M_Ef16): New macro.
23542 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG2Ef16): Likewise.
23543 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG10Ef16): Likewise.
23544 [__HAVE_FLOAT16 && __USE_GNU] (M_LN2f16): Likewise.
23545 [__HAVE_FLOAT16 && __USE_GNU] (M_LN10f16): Likewise.
23546 [__HAVE_FLOAT16 && __USE_GNU] (M_PIf16): Likewise.
23547 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_2f16): Likewise.
23548 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_4f16): Likewise.
23549 [__HAVE_FLOAT16 && __USE_GNU] (M_1_PIf16): Likewise.
23550 [__HAVE_FLOAT16 && __USE_GNU] (M_2_PIf16): Likewise.
23551 [__HAVE_FLOAT16 && __USE_GNU] (M_2_SQRTPIf16): Likewise.
23552 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT2f16): Likewise.
23553 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT1_2f16): Likewise.
23554 [__HAVE_FLOAT32 && __USE_GNU] (M_Ef32): Likewise.
23555 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG2Ef32): Likewise.
23556 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG10Ef32): Likewise.
23557 [__HAVE_FLOAT32 && __USE_GNU] (M_LN2f32): Likewise.
23558 [__HAVE_FLOAT32 && __USE_GNU] (M_LN10f32): Likewise.
23559 [__HAVE_FLOAT32 && __USE_GNU] (M_PIf32): Likewise.
23560 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_2f32): Likewise.
23561 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_4f32): Likewise.
23562 [__HAVE_FLOAT32 && __USE_GNU] (M_1_PIf32): Likewise.
23563 [__HAVE_FLOAT32 && __USE_GNU] (M_2_PIf32): Likewise.
23564 [__HAVE_FLOAT32 && __USE_GNU] (M_2_SQRTPIf32): Likewise.
23565 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT2f32): Likewise.
23566 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT1_2f32): Likewise.
23567 [__HAVE_FLOAT64 && __USE_GNU] (M_Ef64): Likewise.
23568 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG2Ef64): Likewise.
23569 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG10Ef64): Likewise.
23570 [__HAVE_FLOAT64 && __USE_GNU] (M_LN2f64): Likewise.
23571 [__HAVE_FLOAT64 && __USE_GNU] (M_LN10f64): Likewise.
23572 [__HAVE_FLOAT64 && __USE_GNU] (M_PIf64): Likewise.
23573 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_2f64): Likewise.
23574 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_4f64): Likewise.
23575 [__HAVE_FLOAT64 && __USE_GNU] (M_1_PIf64): Likewise.
23576 [__HAVE_FLOAT64 && __USE_GNU] (M_2_PIf64): Likewise.
23577 [__HAVE_FLOAT64 && __USE_GNU] (M_2_SQRTPIf64): Likewise.
23578 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT2f64): Likewise.
23579 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT1_2f64): Likewise.
23580 [__HAVE_FLOAT32X && __USE_GNU] (M_Ef32x): Likewise.
23581 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG2Ef32x): Likewise.
23582 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG10Ef32x): Likewise.
23583 [__HAVE_FLOAT32X && __USE_GNU] (M_LN2f32x): Likewise.
23584 [__HAVE_FLOAT32X && __USE_GNU] (M_LN10f32x): Likewise.
23585 [__HAVE_FLOAT32X && __USE_GNU] (M_PIf32x): Likewise.
23586 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_2f32x): Likewise.
23587 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_4f32x): Likewise.
23588 [__HAVE_FLOAT32X && __USE_GNU] (M_1_PIf32x): Likewise.
23589 [__HAVE_FLOAT32X && __USE_GNU] (M_2_PIf32x): Likewise.
23590 [__HAVE_FLOAT32X && __USE_GNU] (M_2_SQRTPIf32x): Likewise.
23591 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT2f32x): Likewise.
23592 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT1_2f32x): Likewise.
23593 [__HAVE_FLOAT64X && __USE_GNU] (M_Ef64x): Likewise.
23594 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG2Ef64x): Likewise.
23595 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG10Ef64x): Likewise.
23596 [__HAVE_FLOAT64X && __USE_GNU] (M_LN2f64x): Likewise.
23597 [__HAVE_FLOAT64X && __USE_GNU] (M_LN10f64x): Likewise.
23598 [__HAVE_FLOAT64X && __USE_GNU] (M_PIf64x): Likewise.
23599 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_2f64x): Likewise.
23600 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_4f64x): Likewise.
23601 [__HAVE_FLOAT64X && __USE_GNU] (M_1_PIf64x): Likewise.
23602 [__HAVE_FLOAT64X && __USE_GNU] (M_2_PIf64x): Likewise.
23603 [__HAVE_FLOAT64X && __USE_GNU] (M_2_SQRTPIf64x): Likewise.
23604 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT2f64x): Likewise.
23605 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT1_2f64x): Likewise.
23606 [__HAVE_FLOAT128X && __USE_GNU]: Use #error.
23607
23608 2017-10-30 Florian Weimer <fweimer@redhat.com>
23609
23610 * elf/ldconfig.c (search_dir): Assume that _DIRENT_HAVE_D_TYPE is
23611 always defined.
23612 * io/tst-mkdirat.c (do_test): Likewise.
23613 * io/tst-mkfifoat.c (do_test): Likewise.
23614 * io/tst-mknodat.c (do_test): Likewise.
23615 * locale/programs/charmap-dir.c (charmap_readdir): Likewise.
23616 * locale/programs/locale.c (select_dirs): Likewise.
23617 * locale/programs/locarchive.c (add_locales_to_archive): Likewise.
23618 * posix/bug-glob2.c (my_readdir): Likewise.
23619 * posix/tst-dir.c (main): Likewise.
23620 * posix/tst-glob_lstat_compat.c (my_readdir): Likewise.
23621 * posix/tst-gnuglob-skeleton.c (my_readdir): Likewise.
23622
23623 2017-10-30 Florian Weimer <fweimer@redhat.com>
23624
23625 * string/strings.h (ffsl, ffsll): Declare under __USE_MISC, not
23626 just __USE_GNU.
23627
23628 2017-10-30 Florian Weimer <fweimer@redhat.com>
23629
23630 * posix/tst-gnuglob-skeleton.c: Renamed from tst-gnuglob.c.
23631 Convert to support/test-driver.c.
23632 (GLOB_FUNC, GLOB_TYPE, GLOBFREE_FUNC, DIRENT_STRUCT, STAT_STRUCT):
23633 New macro parameters.
23634 (PRINTF): Remove macro. Use test_verbose conditionals instead.
23635 * posix/tst-gnuglob.c: New file.
23636 * posix/tst-gnuglob64.c: Likewise.
23637 * posix/Makefile (tests): Add tst-gnuglob64.
23638
23639 2017-10-30 Michal Ostrowski <ostrowski.michal@gmail.com>
23640
23641 [BZ #19485]
23642 * localedata/locales/csb_PL (LC_TIME): Fix “abmon” for March
23643 and use a better translation for March in “mon”.
23644 * localedata/locales/csb_PL: Use more ASCII to improve the
23645 readability of the source.
23646
23647 2017-10-30 Mike FABIAN <mfabian@redhat.com>
23648
23649 [BZ #13953]
23650 * localedata/locales/km_KH: Use ASCII as much
23651 as possible for better readability of the source and
23652 remove useless comments.
23653 * localedata/locales/km_KH (LC_TIME): Remove era stuff, it
23654 was commented out and apparently wrong anyway because it was
23655 using Lao characters. If Buddhist era should be used
23656 for km_KH, a native speaker should write the correct formaat
23657 for Khmer.
23658 * localedata/locales/km_KH (LC_TIME): Add first_weekday 1
23659 (According to CLDR, the first weekday for Cambodia is Sunday).
23660 * localedata/locales/km_KH (LC_NAME): Remove name_mr and name_mrs
23661 (These were using Lao characters which must be wrong. If we get
23662 the correct data from a native speaker, we could add it back, until
23663 then it is better not to have name_mr and name_mrs at all than
23664 having it wrong).
23665
23666 2017-10-27 Rafal Luzynski <digitalfreak@lingonborough.com>
23667
23668 * locale/loadlocale.c: Correct size of
23669 _nl_value_type_LC_<category> arrays.
23670
23671 2017-10-27 Joseph Myers <joseph@codesourcery.com>
23672
23673 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
23674 Include <bits/mathcalls-helper-functions.h> and <bits/mathcalls.h>
23675 with appropriate macros defined and undefined.
23676 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
23677 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
23678 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
23679 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
23680 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
23681
23682 2017-10-27 H.J. Lu <hongjiu.lu@intel.com>
23683
23684 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
23685 "-O2 -march=i586".
23686
23687 2017-10-27 Mike FABIAN <mfabian@redhat.com>
23688
23689 * localedata/locales/tt_RU (LC_MESSAGES): Start yesstr and nostr
23690 with lowercase letters to make it agree with CLDR.
23691
23692 2017-10-27 Mike FABIAN <mfabian@redhat.com>
23693
23694 [BZ #15260]
23695 * localedata/locales/doi_IN (LC_MESSAGES): Match only for the
23696 first letters of yesstr and nostr in yesexpr and noexpr,
23697 not for the full words.
23698 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
23699 * localedata/locales/kok_IN (LC_MESSAGES): Likewise.
23700 * localedata/locales/mr_IN (LC_MESSAGES): Likewise.
23701 * localedata/locales/sat_IN (LC_MESSAGES): Likewise.
23702 * localedata/locales/km_KH (LC_MESSAGES): Match also for the
23703 first letters of yesstr and nostr in yesexpr and noexpr,
23704 until now only English was matched in yesexpr and noexpr.
23705 * localedata/locales/tl_PH (LC_MESSAGES): Use “copy "fil_PH"”
23706 instead of “copy "en_US"”. CLDR has yesstr and nostr data for
23707 fil but not for tl. As tl and fil are very similar, using fil
23708 is probably better than using English.
23709
23710 2017-10-27 Thierry Vignaud <thierry.vignaud@gmail.com>
23711
23712 [BZ #21706]
23713 * localedata/locales/br_FR (LC_MESSAGES): Use all lowercase
23714 in yesstr and nostr.
23715
23716 2017-10-26 Joseph Myers <joseph@codesourcery.com>
23717
23718 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
23719 (IEC_60559_TYPES_EXT)] (SNANF16): New macro.
23720 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32):
23721 Likewise.
23722 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64):
23723 Likewise.
23724 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32X):
23725 Likewise.
23726 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64X):
23727 Likewise.
23728 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23729 (SNANF128X): Likewise.
23730
23731 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
23732 (IEC_60559_TYPES_EXT)] (HUGE_VAL_F16): New macro.
23733 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23734 (HUGE_VAL_F32): Likewise.
23735 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23736 (HUGE_VAL_F64): Likewise.
23737 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23738 (HUGE_VAL_F32X): Likewise.
23739 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23740 (HUGE_VAL_F64X): Likewise.
23741 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23742 (HUGE_VAL_F128X): Likewise.
23743
23744 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
23745
23746 * localedata/locales/br_FR (LC_IDENTIFICATON): Add
23747 Thierry Vignaud <thierry.vignaud@gmail.com> as the contact
23748 for the br_FR locale.
23749
23750 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
23751
23752 [BZ #21706]
23753 * localedata/locales/br_FR (LC_MESSAGES): Fix nostr.
23754
23755 2017-10-25 Carlos O'Donell <carlos@redhat.com>
23756
23757 * locale/programs/record-status.h: Define globals, and function
23758 prototypes. Move function bodies...
23759 * locale/programs/record-status.c: ... to here. New file.
23760 * iconv/Makefile (iconv_prog-modules): Add record-status.
23761 * locale/Makefile (lib-modules): Likewise.
23762 * iconv/iconv_prog.c: Remove verbose.
23763 * iconv/iconv_prog.h: Include record-status.h (defines verbose).
23764 * locale/programs/charmap.c (charmap_read): If warn_ascii is true then
23765 record a warning about ASCII compatibility.
23766 * locale/programs/ld-monetary.c (monetary_finish): If
23767 warn_int_curr_symbol is true then record a warning about the symbol
23768 not being in our ISO 4217 list.
23769 * locale/programs/locale.c: Include record-status.h. Remove verbose.
23770 * locale/programs/localedef.c: Include ctype.h. Remove delcaration of
23771 verbose, recorded_warning_count, recorded_error_count, and be_quiet.
23772 (OPT_NO_WARN): Define.
23773 (OPT_WARN): Define.
23774 (options): Add entry for --no-warnings, and --warnings.
23775 (set_warnings): New function to enable/disable warnings.
23776 (parse_opt): Call set_warnings for OPT_NO_WARN and OPT_WARN.
23777 * locale/programs/localedef.h: Remove warn_int_curr_symbol.
23778 * localedata/gen-locale.sh: Default flags to `--quiet -c'.
23779 Add `--no-warnings=ascii' to locales using SHIFT_JIS or SHIFT_JIXX0213.
23780 Pass flags to generate_locale.
23781 (generate_locale): Accept new flag argument and pass it to localedef
23782 invocation.
23783 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Use
23784 --no-warnings=ascii for SHIFT_JIS and SHIFT_JISX0213 charmaps.
23785
23786 * localedata/Makefile (test-input-data): Use full file name.
23787 * localedata/da_DK.in: Rename to...
23788 * localedata/da_DK.ISO-8859-1.in: ...this.
23789 * localedata/de_DE.in: Rename to...
23790 * localedata/de_DE.ISO-8859-1.in: ...this.
23791 * localedata/en_US.in: Rename to...
23792 * localedata/en_US.ISO-8859-1.in: ...this.
23793 * localedata/fr_FR.in: Rename to...
23794 * localedata/fr_FR.UTF-8.in: ... this.
23795 * localedata/hr_HR.in: Rename to...
23796 * localedata/hr_HR.ISO-8859-2.in: ...this.
23797 * localedata/hu_HU.in: Rename to...
23798 * localedata/hu_HU.UTF-8.in: ...this.
23799 * localedata/si_LK.in: Rename to...
23800 * localedata/si_LK.UTF-8.in: ...this.
23801 * localedata/sv_SE.in: Rename to...
23802 * localedata/sv_SE.ISO-8859-1.in: ...this.
23803 * localedata/tr_TR.in: Rename to...
23804 * localedata/tr_TR.UTF-8.in: ...this.
23805 * localedata/uk_UA.in: Rename to...
23806 * localedata/uk_UA.UTF-8.in: ...this.
23807 * localedata/sort-test.sh: Test file is locale name with the
23808 suffix.
23809
23810 * localedata/unicode-gen/Makefile (check_i18n): Rename to
23811 check_i18n_ctype. Depend on i18n_ctype-report. Check i18n_ctype-report
23812 file.
23813 * localedata/locales/i18n_ctype: Regenerate.
23814 * localedata/locales/tr_TR: Likewise.
23815 * localedata/locales/translit_circle: Likewise.
23816 * localedata/locales/translit_cjk_compat: Likewise.
23817 * localedata/locales/translit_combining: Likewise.
23818 * localedata/locales/translit_compat: Likewise.
23819 * localedata/locales/translit_font: Likewise.
23820 * localedata/locales/translit_fraction: Likewise.
23821
23822 2017-10-25 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
23823
23824 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Replace
23825 lxvd2x/stxvd2x with lvx/stvx.
23826 * sysdeps/powerpc/powerpc64/power7/memmove.S: Likewise.
23827
23828 2017-10-25 H.J. Lu <hongjiu.lu@intel.com>
23829
23830 * include/alloc_buffer.h: Replace "if if " with "if " in
23831 comments.
23832 * sysdeps/mips/memcpy.S: Likkewise.
23833 * sysdeps/mips/memset.S: Likewise.
23834 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
23835 Likewise.
23836 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf4_core_sse4.S:
23837 Likewise.
23838 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf8_core_avx2.S:
23839 Likewise.
23840
23841 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23842
23843 [BZ #15261]
23844 * localedata/locales/cmn_TW (LC_MESSAGES): Add fullwidth yYnN to
23845 yesexpr and noexpr.
23846 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
23847 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
23848 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
23849 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
23850 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
23851 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
23852 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
23853
23854 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23855
23856 * localedata/locales/am_ET (LC_MESSAGES): Sync with CLDR.
23857 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
23858 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
23859 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
23860 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
23861 * localedata/locales/mfe_MU (LC_MESSAGES): Likewise.
23862 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
23863 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
23864 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
23865 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
23866 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
23867 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
23868
23869 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23870
23871 * localedata/locales/aa_ET (LC_MESSAGES): Use ASCII as much
23872 as possible for better readability of the source.
23873 * localedata/locales/af_ZA (LC_MESSAGES): Likewise.
23874 * localedata/locales/ak_GH (LC_MESSAGES): Likewise.
23875 * localedata/locales/am_ET (LC_MESSAGES): Likewise.
23876 * localedata/locales/anp_IN (LC_MESSAGES): Likewise.
23877 * localedata/locales/ar_EG (LC_MESSAGES): Likewise.
23878 * localedata/locales/as_IN (LC_MESSAGES): Likewise.
23879 * localedata/locales/ast_ES (LC_MESSAGES): Likewise.
23880 * localedata/locales/ayc_PE (LC_MESSAGES): Likewise.
23881 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
23882 * localedata/locales/az_IR (LC_MESSAGES): Likewise.
23883 * localedata/locales/be_BY (LC_MESSAGES): Likewise.
23884 * localedata/locales/be_BY@latin (LC_MESSAGES): Likewise.
23885 * localedata/locales/bem_ZM (LC_MESSAGES): Likewise.
23886 * localedata/locales/ber_MA (LC_MESSAGES): Likewise.
23887 * localedata/locales/bg_BG (LC_MESSAGES): Likewise.
23888 * localedata/locales/bhb_IN (LC_MESSAGES): Likewise.
23889 * localedata/locales/bi_VU (LC_MESSAGES): Likewise.
23890 * localedata/locales/bo_CN (LC_MESSAGES): Likewise.
23891 * localedata/locales/br_FR (LC_MESSAGES): Likewise.
23892 * localedata/locales/bs_BA (LC_MESSAGES): Likewise.
23893 * localedata/locales/ca_ES (LC_MESSAGES): Likewise.
23894 * localedata/locales/ce_RU (LC_MESSAGES): Likewise.
23895 * localedata/locales/crh_UA (LC_MESSAGES): Likewise.
23896 * localedata/locales/cs_CZ (LC_MESSAGES): Likewise.
23897 * localedata/locales/csb_PL (LC_MESSAGES): Likewise.
23898 * localedata/locales/cv_RU (LC_MESSAGES): Likewise.
23899 * localedata/locales/cy_GB (LC_MESSAGES): Likewise.
23900 * localedata/locales/da_DK (LC_MESSAGES): Likewise.
23901 * localedata/locales/de_DE (LC_MESSAGES): Likewise.
23902 * localedata/locales/dv_MV (LC_MESSAGES): Likewise.
23903 * localedata/locales/dz_BT (LC_MESSAGES): Likewise.
23904 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
23905 * localedata/locales/en_CA (LC_MESSAGES): Likewise.
23906 * localedata/locales/en_US (LC_MESSAGES): Likewise.
23907 * localedata/locales/es_ES (LC_MESSAGES): Likewise.
23908 * localedata/locales/et_EE (LC_MESSAGES): Likewise.
23909 * localedata/locales/eu_ES (LC_MESSAGES): Likewise.
23910 * localedata/locales/fa_IR (LC_MESSAGES): Likewise.
23911 * localedata/locales/ff_SN (LC_MESSAGES): Likewise.
23912 * localedata/locales/fi_FI (LC_MESSAGES): Likewise.
23913 * localedata/locales/fil_PH (LC_MESSAGES): Likewise.
23914 * localedata/locales/fo_FO (LC_MESSAGES): Likewise.
23915 * localedata/locales/fr_BE (LC_MESSAGES): Likewise.
23916 * localedata/locales/fr_CH (LC_MESSAGES): Likewise.
23917 * localedata/locales/fr_FR (LC_MESSAGES): Likewise.
23918 * localedata/locales/fr_LU (LC_MESSAGES): Likewise.
23919 * localedata/locales/fur_IT (LC_MESSAGES): Likewise.
23920 * localedata/locales/fy_DE (LC_MESSAGES): Likewise.
23921 * localedata/locales/ga_IE (LC_MESSAGES): Likewise.
23922 * localedata/locales/gd_GB (LC_MESSAGES): Likewise.
23923 * localedata/locales/gl_ES (LC_MESSAGES): Likewise.
23924 * localedata/locales/gu_IN (LC_MESSAGES): Likewise.
23925 * localedata/locales/gv_GB (LC_MESSAGES): Likewise.
23926 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
23927 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
23928 * localedata/locales/he_IL (LC_MESSAGES): Likewise.
23929 * localedata/locales/hif_FJ (LC_MESSAGES): Likewise.
23930 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
23931 * localedata/locales/hr_HR (LC_MESSAGES): Likewise.
23932 * localedata/locales/hsb_DE (LC_MESSAGES): Likewise.
23933 * localedata/locales/ht_HT (LC_MESSAGES): Likewise.
23934 * localedata/locales/hu_HU (LC_MESSAGES): Likewise.
23935 * localedata/locales/hy_AM (LC_MESSAGES): Likewise.
23936 * localedata/locales/ia_FR (LC_MESSAGES): Likewise.
23937 * localedata/locales/id_ID (LC_MESSAGES): Likewise.
23938 * localedata/locales/ig_NG (LC_MESSAGES): Likewise.
23939 * localedata/locales/ik_CA (LC_MESSAGES): Likewise.
23940 * localedata/locales/is_IS (LC_MESSAGES): Likewise.
23941 * localedata/locales/it_CH (LC_MESSAGES): Likewise.
23942 * localedata/locales/it_IT (LC_MESSAGES): Likewise.
23943 * localedata/locales/iu_CA (LC_MESSAGES): Likewise.
23944 * localedata/locales/ja_JP (LC_MESSAGES): Likewise.
23945 * localedata/locales/kk_KZ (LC_MESSAGES): Likewise.
23946 * localedata/locales/kl_GL (LC_MESSAGES): Likewise.
23947 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
23948 * localedata/locales/ks_IN (LC_MESSAGES): Likewise.
23949 * localedata/locales/ku_TR (LC_MESSAGES): Likewise.
23950 * localedata/locales/kw_GB (LC_MESSAGES): Likewise.
23951 * localedata/locales/ky_KG (LC_MESSAGES): Likewise.
23952 * localedata/locales/lb_LU (LC_MESSAGES): Likewise.
23953 * localedata/locales/lg_UG (LC_MESSAGES): Likewise.
23954 * localedata/locales/li_NL (LC_MESSAGES): Likewise.
23955 * localedata/locales/lij_IT (LC_MESSAGES): Likewise.
23956 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
23957 * localedata/locales/lo_LA (LC_MESSAGES): Likewise.
23958 * localedata/locales/lt_LT (LC_MESSAGES): Likewise.
23959 * localedata/locales/lv_LV (LC_MESSAGES): Likewise.
23960 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
23961 * localedata/locales/mg_MG (LC_MESSAGES): Likewise.
23962 * localedata/locales/mhr_RU (LC_MESSAGES): Likewise.
23963 * localedata/locales/mi_NZ (LC_MESSAGES): Likewise.
23964 * localedata/locales/mk_MK (LC_MESSAGES): Likewise.
23965 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
23966 * localedata/locales/mn_MN (LC_MESSAGES): Likewise.
23967 * localedata/locales/ms_MY (LC_MESSAGES): Likewise.
23968 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
23969 * localedata/locales/my_MM (LC_MESSAGES): Likewise.
23970 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
23971 * localedata/locales/nan_TW@latin (LC_MESSAGES): Likewise.
23972 * localedata/locales/nb_NO (LC_MESSAGES): Likewise.
23973 * localedata/locales/nds_DE (LC_MESSAGES): Likewise.
23974 * localedata/locales/nds_NL (LC_MESSAGES): Likewise.
23975 * localedata/locales/ne_NP (LC_MESSAGES): Likewise.
23976 * localedata/locales/nhn_MX (LC_MESSAGES): Likewise.
23977 * localedata/locales/niu_NU (LC_MESSAGES): Likewise.
23978 * localedata/locales/nl_NL (LC_MESSAGES): Likewise.
23979 * localedata/locales/nn_NO (LC_MESSAGES): Likewise.
23980 * localedata/locales/nr_ZA (LC_MESSAGES): Likewise.
23981 * localedata/locales/nso_ZA (LC_MESSAGES): Likewise.
23982 * localedata/locales/oc_FR (LC_MESSAGES): Likewise.
23983 * localedata/locales/om_ET (LC_MESSAGES): Likewise.
23984 * localedata/locales/or_IN (LC_MESSAGES): Likewise.
23985 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
23986 * localedata/locales/pa_IN (LC_MESSAGES): Likewise.
23987 * localedata/locales/pa_PK (LC_MESSAGES): Likewise.
23988 * localedata/locales/pap_AW (LC_MESSAGES): Likewise.
23989 * localedata/locales/pap_CW (LC_MESSAGES): Likewise.
23990 * localedata/locales/pl_PL (LC_MESSAGES): Likewise.
23991 * localedata/locales/ps_AF (LC_MESSAGES): Likewise.
23992 * localedata/locales/pt_BR (LC_MESSAGES): Likewise.
23993 * localedata/locales/quz_PE (LC_MESSAGES): Likewise.
23994 * localedata/locales/raj_IN (LC_MESSAGES): Likewise.
23995 * localedata/locales/ro_RO (LC_MESSAGES): Likewise.
23996 * localedata/locales/ru_RU (LC_MESSAGES): Likewise.
23997 * localedata/locales/ru_UA (LC_MESSAGES): Likewise.
23998 * localedata/locales/rw_RW (LC_MESSAGES): Likewise.
23999 * localedata/locales/sa_IN (LC_MESSAGES): Likewise.
24000 * localedata/locales/sc_IT (LC_MESSAGES): Likewise.
24001 * localedata/locales/sd_IN@devanagari (LC_MESSAGES): Likewise.
24002 * localedata/locales/se_NO (LC_MESSAGES): Likewise.
24003 * localedata/locales/sgs_LT (LC_MESSAGES): Likewise.
24004 * localedata/locales/si_LK (LC_MESSAGES): Likewise.
24005 * localedata/locales/sk_SK (LC_MESSAGES): Likewise.
24006 * localedata/locales/sl_SI (LC_MESSAGES): Likewise.
24007 * localedata/locales/sm_WS (LC_MESSAGES): Likewise.
24008 * localedata/locales/so_DJ (LC_MESSAGES): Likewise.
24009 * localedata/locales/sq_AL (LC_MESSAGES): Likewise.
24010 * localedata/locales/sr_RS (LC_MESSAGES): Likewise.
24011 * localedata/locales/sr_RS@latin (LC_MESSAGES): Likewise.
24012 * localedata/locales/ss_ZA (LC_MESSAGES): Likewise.
24013 * localedata/locales/st_ZA (LC_MESSAGES): Likewise.
24014 * localedata/locales/sv_SE (LC_MESSAGES): Likewise.
24015 * localedata/locales/sw_KE (LC_MESSAGES): Likewise.
24016 * localedata/locales/szl_PL (LC_MESSAGES): Likewise.
24017 * localedata/locales/tcy_IN (LC_MESSAGES): Likewise.
24018 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
24019 * localedata/locales/th_TH (LC_MESSAGES): Likewise.
24020 * localedata/locales/the_NP (LC_MESSAGES): Likewise.
24021 * localedata/locales/ti_ER (LC_MESSAGES): Likewise.
24022 * localedata/locales/tk_TM (LC_MESSAGES): Likewise.
24023 * localedata/locales/tn_ZA (LC_MESSAGES): Likewise.
24024 * localedata/locales/to_TO (LC_MESSAGES): Likewise.
24025 * localedata/locales/tr_TR (LC_MESSAGES): Likewise.
24026 * localedata/locales/ts_ZA (LC_MESSAGES): Likewise.
24027 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
24028 * localedata/locales/tt_RU@iqtelif (LC_MESSAGES): Likewise.
24029 * localedata/locales/uk_UA (LC_MESSAGES): Likewise.
24030 * localedata/locales/unm_US (LC_MESSAGES): Likewise.
24031 * localedata/locales/ur_IN (LC_MESSAGES): Likewise.
24032 * localedata/locales/ur_PK (LC_MESSAGES): Likewise.
24033 * localedata/locales/uz_UZ (LC_MESSAGES): Likewise.
24034 * localedata/locales/uz_UZ@cyrillic (LC_MESSAGES): Likewise.
24035 * localedata/locales/ve_ZA (LC_MESSAGES): Likewise.
24036 * localedata/locales/vi_VN (LC_MESSAGES): Likewise.
24037 * localedata/locales/wa_BE (LC_MESSAGES): Likewise.
24038 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
24039 * localedata/locales/xh_ZA (LC_MESSAGES): Likewise.
24040 * localedata/locales/yi_US (LC_MESSAGES): Likewise.
24041 * localedata/locales/yo_NG (LC_MESSAGES): Likewise.
24042 * localedata/locales/yue_HK (LC_MESSAGES): Likewise.
24043 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
24044 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
24045 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
24046 * localedata/locales/zu_ZA (LC_MESSAGES): Likewise.
24047
24048 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24049
24050 * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr
24051 (Use first letters of yesstr and nostr correctly instead of using
24052 full words).
24053
24054 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24055
24056 * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr
24057 (Use first letters of yesstr and nostr correctly).
24058
24059 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24060
24061 * localedata/locales/hi_IN (LC_MESSAGES): In yesexpr and noexpr,
24062 also check for the first characters of yesstr and nostr.
24063 * localedata/locales/kn_IN (LC_MESSAGES): Likewise.
24064 * localedata/locales/ks_IN@devanagari (LC_MESSAGES): Likewise.
24065
24066 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24067
24068 * localedata/locales/cmn_TW (LC_MESSAGES): In yesexpr and noexpr,
24069 also check for Chinese characters.
24070
24071 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24072
24073 * localedata/locales/chr_US (LC_MESSAGES): In yesexpr and noexpr,
24074 match also for the contents of yesstr and nostr. As the first letter
24075 of yesstr and nostr is equal, checking only for the first letter
24076 is not enough.
24077
24078 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24079
24080 * localedata/locales/ber_DZ (LC_MESSAGES): Use copy "kab_DZ",
24081 it is the same according to Belkacem Mohammed <belkacem77@gmail.com>.
24082
24083 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24084
24085 * localedata/locales/kab_DZ (LC_IDENTIFICATION): Add e-mail
24086 of main contributor.
24087
24088 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24089
24090 * localedata/locales/zh_SG (LC_MESSAGES): Use copy "zh_CN"
24091 instead of using English.
24092
24093 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24094
24095 * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr
24096 by including the first letters of nostr and yesexpr in the regexp.
24097 Also make it more readable by using ASCII where possible.
24098
24099 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24100
24101 * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including
24102 the first letter of nostr in the regexp. It agrees with CLDR now.
24103 Also make it more readable by using ASCII where possible.
24104
24105 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24106
24107 * localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
24108 The yesstr and nostr apparently came from CLDR. And CLDR has a bug there:
24109 these strings contain a U+17D6 (which somewhat looks like a colon)
24110 instead of a real colon to separate the full words for “yes”
24111 and “no” from the single letter responses.
24112
24113 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24114
24115 * localedata/locales/ka_GE (LC_MESSAGES): Fix yesexp to make
24116 it agree with CLDR (include the first letter of yesstr).
24117 Also make it more readable by using ASCII where possible.
24118
24119 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24120
24121 * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr
24122 and improve yesexpr and noexpr. The yesstr and nostr apparently
24123 came from CLDR. And CLDR has a bug there: these strings contain
24124 a U+0903 (which looks like a colon) instead of a real colon
24125 to separate the full words for “yes” and “no” from the single
24126 letter responses.
24127
24128 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24129
24130 * localedata/locales/bn_BD (LC_MESSAGES): Use only the first
24131 letters of the full yesstr and nostr in yesexpr and noexpr.
24132
24133 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24134
24135 * localedata/locales/an_ES (LC_MESSAGES): Add yesstr and nostr.
24136 * localedata/locales/an_ES (LC_ADDRESS): Add lang_term and lang_lib.
24137 * localedata/locales/an_ES: Make source more readable by using ASCII
24138 where possible.
24139
24140 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24141
24142 [BZ #20952]
24143 * localedata/locales/yuw_PG: New file.
24144 * localedata/SUPPORTED: Add yuw_PG/UTF-8.
24145 * locale/iso-639.def: Add Yau (Uruwa).
24146
24147 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
24148
24149 * malloc/malloc.c (_int_malloc): Add SINGLE_THREAD_P path.
24150
24151 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
24152
24153 * malloc/malloc.c (__libc_malloc): Add SINGLE_THREAD_P path.
24154 (__libc_realloc): Likewise.
24155 (_mid_memalign): Likewise.
24156 (__libc_calloc): Likewise.
24157
24158 2017-10-23 Mike FABIAN <mfabian@redhat.com>
24159
24160 * localedata/locales/tpi_PG (LC_MESSAGES): Fix yesexpr and noexpr
24161 by adding the generic +1 and -0 as in all other locales.
24162 * localedata/locales/tpi_PG (LC_TIME): Fix some typos in the month and
24163 day names and make it more readable by using ASCII where possible.
24164
24165 2017-10-24 Joseph Myers <joseph@codesourcery.com>
24166
24167 * sysdeps/x86/fpu/fix-fp-int-compare-invalid.h
24168 (FIX_COMPARE_INVALID): Define to 0 if [__GNUC_PREREQ (8, 0)].
24169
24170 2017-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24171
24172 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Use 0 instead of
24173 WNOHANG in waitpid call.
24174
24175 2017-10-23 Siddhesh Poyarekar <siddhesh@sourceware.org>
24176
24177 * manual/conf.texi (_SC_LEVEL1_DCACHE_LINESIZE,
24178 _SC_LEVEL1_ICACHE_LINESIZE): Document aarch64 caveat.
24179
24180 * manual/conf.texi (_SC_LEVEL1_ICACHE_SIZE,
24181 _SC_LEVEL1_ICACHE_ASSOC, _SC_LEVEL1_ICACHE_LINESIZE,
24182 _SC_LEVEL1_DCACHE_SIZE, _SC_LEVEL1_DCACHE_ASSOC,
24183 _SC_LEVEL1_DCACHE_LINESIZE, _SC_LEVEL2_CACHE_SIZE,
24184 _SC_LEVEL2_CACHE_ASSOC, _SC_LEVEL2_CACHE_LINESIZE,
24185 _SC_LEVEL3_CACHE_SIZE, _SC_LEVEL3_CACHE_ASSOC,
24186 _SC_LEVEL3_CACHE_LINESIZE, _SC_LEVEL4_CACHE_SIZE,
24187 _SC_LEVEL4_CACHE_ASSOC, _SC_LEVEL4_CACHE_LINESIZE): New
24188 variables.
24189
24190 2017-10-23 Michael Collison <michael.collison@arm.com>
24191
24192 * sysdeps/aarch64/fpu/e_sqrt.c (ieee754_sqrt): Replace asm statements
24193 with __builtin_sqrt.
24194 * sysdeps/aarch64/fpu/e_sqrtf.c (ieee754_sqrtf): Replace asm statements
24195 with __builtin_sqrtf.
24196 * sysdeps/aarch64/fpu/s_ceil.c (__ceil): Replace asm statements
24197 with __builtin_ceil.
24198 * sysdeps/aarch64/fpu/s_ceilf.c (__ceilf): Replace asm statements
24199 with __builtin_ceilf.
24200 * sysdeps/aarch64/fpu/s_floor.c (__floor): Replace asm statements
24201 with __builtin_floor.
24202 * sysdeps/aarch64/fpu/s_floorf.c (__floorf): Replace asm statements
24203 with __builtin_floorf.
24204 * sysdeps/aarch64/fpu/s_fma.c (__fma): Replace asm statements
24205 with __builtin_fma.
24206 * sysdeps/aarch64/fpu/s_fmaf.c (__fmaf): Replace asm statements
24207 with __builtin_fmaf.
24208 * sysdeps/aarch64/fpu/s_fmax.c (__fmax): Replace asm statements
24209 with __builtin_fmax.
24210 * sysdeps/aarch64/fpu/s_fmaxf.c (__fmaxf): Replace asm statements
24211 with __builtin_fmaxf.
24212 * sysdeps/aarch64/fpu/s_fmin.c (__fmin): Replace asm statements
24213 with __builtin_fmin.
24214 * sysdeps/aarch64/fpu/s_fminf.c (__fminf): Replace asm statements
24215 with __builtin_fminf.
24216 * sysdeps/aarch64/fpu/s_frint.c: Delete file.
24217 * sysdeps/aarch64/fpu/s_frintf.c: Delete file.
24218 * sysdeps/aarch64/fpu/s_llrint.c (__llrint): Replace asm statements
24219 with builtin_rint and conversion to int.
24220 * sysdeps/aarch64/fpu/s_llrintf.c (__llrintf): Likewise.
24221 * sysdeps/aarch64/fpu/s_llround.c (__llround): Replace asm statements
24222 with builtin_llround.
24223 * sysdeps/aarch64/fpu/s_llroundf.c (__llroundf): Likewise.
24224 * sysdeps/aarch64/fpu/s_lrint.c (__lrint): Replace asm statements
24225 with builtin_rint and conversion to long int.
24226 * sysdeps/aarch64/fpu/s_lrintf.c (__lrintf): Likewise.
24227 * sysdeps/aarch64/fpu/s_lround.c (__lround): Replace asm statements
24228 with builtin_lround.
24229 * sysdeps/aarch64/fpu/s_lroundf.c (__lroundf): Replace asm statements
24230 with builtin_lroundf.
24231 * sysdeps/aarch64/fpu/s_nearbyint.c (__nearbyint): Replace asm
24232 statements with __builtin_nearbyint.
24233 * sysdeps/aarch64/fpu/s_nearbyintf.c (__nearbyintf): Replace asm
24234 statements with __builtin_nearbyintf.
24235 * sysdeps/aarch64/fpu/s_rint.c (__rint): Replace asm statements
24236 with __builtin_rint.
24237 * sysdeps/aarch64/fpu/s_rintf.c (__rintf): Replace asm statements
24238 with __builtin_rintf.
24239 * sysdeps/aarch64/fpu/s_round.c (__round): Replace asm statements
24240 with __builtin_round.
24241 * sysdeps/aarch64/fpu/s_roundf.c (__roundf): Replace asm statements
24242 with __builtin_roundf.
24243 * sysdeps/aarch64/fpu/s_trunc.c (__trunc): Replace asm statements
24244 with __builtin_trunc.
24245 * sysdeps/aarch64/fpu/s_truncf.c (__truncf): Replace asm statements
24246 with __builtin_truncf.
24247 * sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno,
24248 and s_l[l]round[f].c too.
24249
24250 2017-10-23 Alan Modra <amodra@gmail.com>
24251
24252 * sysdeps/powerpc/powerpc64/power8/strncpy.S: Move LR cfi.
24253 Adjust stack after restoring regs. Add missing LR cfi_restore.
24254
24255 2017-10-23 Alan Modra <amodra@gmail.com>
24256
24257 * sysdeps/powerpc/powerpc64/power7/strncpy.S: Decrease FRAMESIZE.
24258 Move LR save and frame setup/teardown and LR restore to
24259 immediately around memset call. Provide cfi.
24260
24261 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24262
24263 * sysdeps/i386/fpu/e_powf.S: Removed.
24264 * sysdeps/i386/fpu/e_powf_log2_data.c: Likewise.
24265 * sysdeps/i386/fpu/w_powf.c: Likewise.
24266 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_powf.c.
24267 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24268 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24269 Add e_powf-sse2.
24270 (CFLAGS-e_powf-sse2.c): New.
24271 * sysdeps/i386/i686/fpu/multiarch/e_powf-sse2.c: New file.
24272 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Likewise.
24273
24274 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24275
24276 * sysdeps/i386/fpu/e_log2f.S: Removed.
24277 * sysdeps/i386/fpu/e_log2f_data.c: Likewise.
24278 * sysdeps/i386/fpu/w_log2f.c: Likewise.
24279 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_log2f.c.
24280 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24281 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24282 Add e_log2f-sse2.
24283 (CFLAGS-e_log2f-sse2.c): New.
24284 * sysdeps/i386/i686/fpu/multiarch/e_log2f-sse2.c: New file.
24285 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Likewise.
24286
24287 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24288
24289 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24290 Add e_powf-fma.
24291 (CFLAGS-e_powf-fma.c): New.
24292 * sysdeps/x86_64/fpu/multiarch/e_powf-fma.c: New file.
24293 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Likewise.
24294
24295 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24296
24297 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24298 Add e_log2f-fma.
24299 (CFLAGS-e_log2f-fma.c): New.
24300 * sysdeps/x86_64/fpu/multiarch/e_log2f-fma.c: New file.
24301 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Likewise.
24302
24303 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24304
24305 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24306 Add e_logf-fma.
24307 (CFLAGS-e_logf-fma.c): New.
24308 * sysdeps/x86_64/fpu/multiarch/e_logf-fma.c: New file.
24309 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Likewise.
24310
24311 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24312
24313 * sysdeps/i386/fpu/e_logf.S: Removed.
24314 * sysdeps/i386/fpu/e_logf_data.c: Likewise.
24315 * sysdeps/i386/fpu/w_logf.c: Likewise.
24316 * sysdeps/i386/i686/fpu/e_logf.S: Likewise.
24317 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_logf.c.
24318 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24319 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24320 Add e_logf-sse2.
24321 (CFLAGS-e_logf-sse2.c): New.
24322 * sysdeps/i386/i686/fpu/multiarch/e_logf-sse2.c: New file.
24323 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Likewise.
24324
24325 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24326
24327 * sysdeps/i386/fpu/e_exp2f.S: Removed.
24328 * sysdeps/i386/fpu/w_exp2f.c: Likewise.
24329 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_exp2f.c.
24330 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24331 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24332 Add e_exp2f-sse2.
24333 (CFLAGS-e_exp2f-sse2.c): New.
24334 * sysdeps/i386/i686/fpu/multiarch/e_exp2f-sse2.c: New file.
24335 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Likewise.
24336
24337 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24338
24339 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24340 Add e_exp2f-fma.
24341 (CFLAGS-e_exp2f-fma.c): New.
24342 * sysdeps/x86_64/fpu/multiarch/e_exp2f-fma.c: New file.
24343 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Likewise.
24344
24345 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24346
24347 * sysdeps/i386/fpu/e_exp2f_data.c: Removed.
24348 * sysdeps/i386/fpu/e_expf.S: Likewise.
24349 * sysdeps/i386/fpu/math_errf.c: Likewise.
24350 * sysdeps/i386/fpu/w_expf.c: Likewise.
24351 * sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S: Likewise.
24352 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
24353 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: Likewise.
24354 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_expf.c.
24355 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24356 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24357 Remove e_expf-ia32.
24358 (CFLAGS-e_expf-sse2.c): New.
24359 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.c: New file.
24360 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Rewritten.
24361
24362 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24363
24364 * sysdeps/x86_64/fpu/e_expf.S: Removed.
24365 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: Likewise.
24366 * sysdeps/x86_64/fpu/w_expf.c: Likewise.
24367 * sysdeps/x86_64/fpu/libm-test-ulps: Updated for generic
24368 e_expf.c.
24369 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_expf-fma.c):
24370 New.
24371 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.c: New file.
24372 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
24373 Renamed to ...
24374 (__redirect_expf): This.
24375 (SYMBOL_NAME): Changed to expf.
24376 (__ieee754_expf): Renamed to ...
24377 (__expf): This.
24378 (__GI___expf): This.
24379 (__ieee754_expf): Add strong_alias.
24380 (__expf_finite): Likewise.
24381 (__expf): New.
24382 Include <sysdeps/ieee754/flt-32/e_expf.c>.
24383
24384 2017-10-22 Paul Eggert <eggert@cs.ucla.edu>
24385
24386 [BZ #22332]
24387 * posix/glob.c (__glob): Fix buffer overflow during GLOB_TILDE
24388 unescaping.
24389
24390 2017-10-21 Florian Weimer <fweimer@redhat.com>
24391
24392 * posix/Makefile (tests): Add tst-glob-tilde.
24393 (tests-special): Add tst-glob-tilde-mem.out
24394 (tst-glob-tilde-ENV): Set MALLOC_TRACE.
24395 (tst-glob-tilde-mem.out): Add mtrace check.
24396 * posix/tst-glob-tilde.c: New file.
24397
24398 2017-10-20 Joseph Myers <joseph@codesourcery.com>
24399
24400 * bits/floatn-common.h: New file.
24401 * math/Makefile (headers): Add bits/floatn-common.h.
24402 * bits/floatn.h: Include <bits/floatn-common.h>.
24403 * sysdeps/ia64/bits/floatn.h: Likewise.
24404 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
24405 * sysdeps/mips/ieee754/bits/floatn.h: Likewise.
24406 * sysdeps/powerpc/bits/floatn.h: Likewise.
24407 * sysdeps/x86/bits/floatn.h: Likewise.
24408
24409 2017-10-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24410
24411 * configure.ac (libc_cv_gcc_incompatbile_alias): New define:
24412 indicates whether compiler emits an warning for alias for
24413 functions with incompatible types.
24414
24415 [BZ #22273]
24416 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Handle the case where
24417 the auxiliary process is terminated by a signal before calling _exit
24418 or execve.
24419
24420 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24421
24422 [BZ #21265]
24423 * sysdeps/x86/cpu-features-offsets.sym (XSAVE_STATE_SIZE_OFFSET):
24424 New.
24425 * sysdeps/x86/cpu-features.c: Include <libc-pointer-arith.h>.
24426 (get_common_indeces): Set xsave_state_size, xsave_state_full_size
24427 and bit_arch_XSAVEC_Usable if needed.
24428 (init_cpu_features): Remove bit_arch_Use_dl_runtime_resolve_slow
24429 and bit_arch_Use_dl_runtime_resolve_opt.
24430 * sysdeps/x86/cpu-features.h (bit_arch_Use_dl_runtime_resolve_opt):
24431 Removed.
24432 (bit_arch_Use_dl_runtime_resolve_slow): Likewise.
24433 (bit_arch_Prefer_No_AVX512): Updated.
24434 (bit_arch_MathVec_Prefer_No_AVX512): Likewise.
24435 (bit_arch_XSAVEC_Usable): New.
24436 (STATE_SAVE_OFFSET): Likewise.
24437 (STATE_SAVE_MASK): Likewise.
24438 [__ASSEMBLER__]: Include <cpu-features-offsets.h>.
24439 (cpu_features): Add xsave_state_size and xsave_state_full_size.
24440 (index_arch_Use_dl_runtime_resolve_opt): Removed.
24441 (index_arch_Use_dl_runtime_resolve_slow): Likewise.
24442 (index_arch_XSAVEC_Usable): New.
24443 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
24444 Support XSAVEC_Usable. Remove Use_dl_runtime_resolve_slow.
24445 * sysdeps/x86_64/Makefile (tst-x86_64-1-ENV): New if tunables
24446 is enabled.
24447 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup):
24448 Replace _dl_runtime_resolve_sse, _dl_runtime_resolve_avx,
24449 _dl_runtime_resolve_avx_slow, _dl_runtime_resolve_avx_opt,
24450 _dl_runtime_resolve_avx512 and _dl_runtime_resolve_avx512_opt
24451 with _dl_runtime_resolve_fxsave, _dl_runtime_resolve_xsave and
24452 _dl_runtime_resolve_xsavec.
24453 * sysdeps/x86_64/dl-trampoline.S (DL_RUNTIME_UNALIGNED_VEC_SIZE):
24454 Removed.
24455 (DL_RUNTIME_RESOLVE_REALIGN_STACK): Check STATE_SAVE_ALIGNMENT
24456 instead of VEC_SIZE.
24457 (REGISTER_SAVE_BND0): Removed.
24458 (REGISTER_SAVE_BND1): Likewise.
24459 (REGISTER_SAVE_BND3): Likewise.
24460 (REGISTER_SAVE_RAX): Always defined to 0.
24461 (VMOV): Removed.
24462 (_dl_runtime_resolve_avx): Likewise.
24463 (_dl_runtime_resolve_avx_slow): Likewise.
24464 (_dl_runtime_resolve_avx_opt): Likewise.
24465 (_dl_runtime_resolve_avx512): Likewise.
24466 (_dl_runtime_resolve_avx512_opt): Likewise.
24467 (_dl_runtime_resolve_sse): Likewise.
24468 (_dl_runtime_resolve_sse_vex): Likewise.
24469 (USE_FXSAVE): New.
24470 (_dl_runtime_resolve_fxsave): Likewise.
24471 (USE_XSAVE): Likewise.
24472 (_dl_runtime_resolve_xsave): Likewise.
24473 (USE_XSAVEC): Likewise.
24474 (_dl_runtime_resolve_xsavec): Likewise.
24475 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve_avx512):
24476 Removed.
24477 (_dl_runtime_resolve_avx512_opt): Likewise.
24478 (_dl_runtime_resolve_avx): Likewise.
24479 (_dl_runtime_resolve_avx_opt): Likewise.
24480 (_dl_runtime_resolve_sse): Likewise.
24481 (_dl_runtime_resolve_sse_vex): Likewise.
24482 (_dl_runtime_resolve_fxsave): New.
24483 (_dl_runtime_resolve_xsave): Likewise.
24484 (_dl_runtime_resolve_xsavec): Likewise.
24485
24486 2017-10-20 Paul Eggert <eggert@cs.ucla.edu>
24487
24488 [BZ #22320]
24489 CVE-2017-15670
24490 * posix/glob.c (__glob): Fix one-byte overflow.
24491
24492 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
24493
24494 * malloc/malloc.c (sysdep-cancel.h): Add include.
24495
24496 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
24497
24498 * malloc/malloc.c (_int_free): Add SINGLE_THREAD_P fast paths.
24499
24500 2017-10-20 Will Hawkins <hawkinsw@borlaugic.com>
24501
24502 * resolv/Makefile [$(build-shared)$(have-thread-library) == yesyes]
24503 (tests): Remove $(objpfx)ga_test depdendency.
24504 * resolv/ga_test.c: Remove file.
24505
24506 2017-10-20 Mike FABIAN <mfabian@redhat.com>
24507
24508 [BZ #18812]
24509 * localedata/SUPPORTED: Add kab_DZ/UTF-8.
24510 * localedata/locales/kab_DZ: New file.
24511
24512 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24513
24514 * sysdeps/m68k/dl-machine.h (elf_machine_load_address): Use
24515 _dl_relocate_static_pie instead of _dl_start to compute load
24516 address in static PIE.
24517
24518 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24519
24520 * sysdeps/m68k/start.S (_start): Check PIC instead of SHARED.
24521
24522 2017-10-20 Mike FABIAN <mfabian@redhat.com>
24523
24524 [BZ #13605]
24525 * localedata/SUPPORTED: Add shn_MM/UTF-8.
24526 * localedata/locales/shn_MM: New file.
24527
24528 2017-10-20 Florian Weimer <fweimer@redhat.com>
24529
24530 [BZ #22321]
24531 sysconf: Fix missing definition of UIO_MAXIOV on Linux.
24532 * sysdeps/posix/sysconf.c: Include <sys/uio.h>.
24533 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-sysconf-iov_max.
24534 (tst-sysconf-iov_max): Link with tst-sysconf-iov_max-uapi.o.
24535 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max.c: New file.
24536 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max-uapi.c: Likewise.
24537
24538 2017-10-19 H.J. Lu <hongjiu.lu@intel.com>
24539
24540 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
24541
24542 2017-10-19 Joseph Myers <joseph@codesourcery.com>
24543
24544 * sysdeps/mips/ieee754/bits/floatn.h: New file.
24545
24546 [BZ #22322]
24547 * sysdeps/mips/bits/long-double.h: Move to ....
24548 * sysdeps/mips/ieee754/bits/long-double.h: ... here.
24549
24550 2017-10-19 Wilco Dijkstra <wdijkstr@arm.com>
24551
24552 * malloc/malloc.c (_int_free): Fix deadlock bug in consistency check.
24553
24554 2017-10-19 Valery Reznic <valery_reznic@yahoo.com>
24555 H.J. Lu <hongjiu.lu@intel.com>
24556
24557 [BZ #22299]
24558 * sysdeps/x86/cpu-features.c (init_cpu_features): Don't set
24559 GLRO(dl_platform) to NULL.
24560 * sysdeps/x86_64/Makefile (tests): Add tst-platform-1.
24561 (modules-names): Add tst-platformmod-1 and
24562 x86_64/tst-platformmod-2.
24563 (CFLAGS-tst-platform-1.c): New.
24564 (CFLAGS-tst-platformmod-1.c): Likewise.
24565 (CFLAGS-tst-platformmod-2.c): Likewise.
24566 (LDFLAGS-tst-platformmod-2.so): Likewise.
24567 ($(objpfx)tst-platform-1): Likewise.
24568 ($(objpfx)tst-platform-1.out): Likewise.
24569 (tst-platform-1-ENV): Likewise.
24570 ($(objpfx)x86_64/tst-platformmod-2.os): Likewise.
24571 * sysdeps/x86_64/tst-platform-1.c: New file.
24572 * sysdeps/x86_64/tst-platformmod-1.c: Likewise.
24573 * sysdeps/x86_64/tst-platformmod-2.c: Likewise.
24574
24575 2017-10-19 Mike FABIAN <mfabian@redhat.com>
24576
24577 [BZ #13994]
24578 * locale/iso-639.def: Add Karbi.
24579 * localedata/SUPPORTED: Add mjw_IN/UTF-8.
24580 * localedata/locales/mjw_IN: New file.
24581
24582 2017-10-18 Joseph Myers <joseph@codesourcery.com>
24583
24584 * sysdeps/ieee754/ldbl-128/Makeconfig: New file.
24585 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
24586 * sysdeps/ieee754/ldbl-128/float128-abi.h: Likewise.
24587 * sysdeps/generic/libm-alias-ldouble.h: Include <bits/floatn.h>.
24588 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
24589 (libm_alias_ldouble_other_r): Also create _Float128 alias.
24590 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Include
24591 <bits/floatn.h>.
24592 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
24593 (libm_alias_ldouble_other_r): Also create _Float128 alias.
24594 * manual/math.texi (Mathematics): Document additional architecture
24595 support for _Float128.
24596 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
24597 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
24598 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
24599 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
24600 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
24601 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
24602 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
24603 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
24604 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
24605 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
24606 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
24607 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
24608 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
24609 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
24610 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
24611
24612 2017-10-18 Renlin Li <renlin.li@arm.com>
24613
24614 * sysdeps/aarch64/dl-machine.h (elf_machine_load_address): Use
24615 _DYNAMIC symbol to calculate load address.
24616
24617 2017-10-18 Paul A. Clarke <pc@us.ibm.com>
24618
24619 * sysdeps/powerpc/fpu/fenv_private.h (_FPU_MASK_TRAPS_RN):
24620 (_FPU_MASK_FRAC_INEX_RET_CC): Fix masks to more properly handle
24621 summary bits.
24622 (_FPU_MASK_RN): Expand _FPU_MASK_RN to 64bit hex.
24623 (_FPU_MASK_NOT_RN_NI): Treat bit 52 (left-to-right) as reserved.
24624
24625 2017-10-18 Mike FABIAN <mfabian@redhat.com>
24626
24627 [BZ #16777]
24628 * localedata/locales/pl_PL (LC_MONETARY): Use U+202F as mon_thousands_sep
24629 and improve readability by using more ASCII.
24630 * localedata/locales/pl_PL (LC_NUMERIC): Use U+202F as thousands_sep
24631 and improve readability by using more ASCII.
24632
24633 2017-10-18 Wilco Dijkstra <wdijkstr@arm.com>
24634
24635 * malloc/malloc.c (malloc_state): Use int for have_fastchunks since
24636 not all targets support atomics on bool.
24637
24638 2017-10-17 Joseph Myers <joseph@codesourcery.com>
24639
24640 * include/float.h [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 &&
24641 __GLIBC_USE (IEC_60559_TYPES_EXT)] (FLT128_MAX): Define using
24642 __f128.
24643 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24644 (IEC_60559_TYPES_EXT)] (FLT128_EPSILON): Likewise.
24645 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24646 (IEC_60559_TYPES_EXT)] (FLT128_MIN): Likewise.
24647 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24648 (IEC_60559_TYPES_EXT)] (FLT128_TRUE_MIN): Likewise.
24649
24650 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24651
24652 * bits/uio-ext.h (RWF_HIPRI, RWF_DSYNC, RWF_SYNC, RWF_NOWAIT): New
24653 defines.
24654
24655 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24656
24657 [BZ #22159]
24658 * malloc/arena.c (ptmalloc_init): Call malloc_init_state.
24659 * malloc/malloc.c (do_check_free_chunk): Fix build bug.
24660 (do_check_remalloced_chunk): Fix build bug.
24661 (do_check_malloc_state): Add assert that checks arena->top.
24662 (malloc_consolidate): Remove initialization.
24663 (int_mallinfo): Remove call to malloc_consolidate.
24664 (__libc_mallopt): Clarify why malloc_consolidate is needed.
24665
24666 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24667
24668 * malloc/malloc.c (FASTCHUNKS_BIT): Remove.
24669 (have_fastchunks): Remove.
24670 (clear_fastchunks): Remove.
24671 (set_fastchunks): Remove.
24672 (malloc_state): Add have_fastchunks.
24673 (malloc_init_state): Use have_fastchunks.
24674 (do_check_malloc_state): Remove incorrect invariant checks.
24675 (_int_malloc): Use have_fastchunks.
24676 (_int_free): Likewise.
24677 (malloc_consolidate): Likewise.
24678
24679 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24680
24681 * malloc/malloc.c (tcache_put): Inline.
24682 (tcache_get): Inline.
24683
24684 2017-10-17 Jordi Mallach <jordi@gnu.org>
24685
24686 Aurelien Jarno <aurelien@aurel32.net>
24687 [BZ #2522]
24688 * localedata/locales/ca_ES@valencia: New file.
24689 * localedata/SUPPORTED: Add ca_ES@valencia/UTF-8.
24690
24691 2017-10-17 Romain Naour <romain.naour@gmail.com> (tiny change)
24692
24693 [BZ #22296]
24694 * math/math.h: Let signbit use the builtin in C++ mode with gcc
24695 < 6.x
24696
24697 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24698
24699 * scripts/build-many-glibcs.py (Context.add_all_configs):
24700 Add arm-linux-gnueabihf multiarch extra_glibcs.
24701
24702 * sysdeps/generic/ifunc-init.h: New file.
24703 * sysdeps/x86/init-arch.h: Use generic ifunc-init.h.
24704
24705 2017-10-17 Mike FABIAN <mfabian@redhat.com>
24706
24707 [BZ #22019]
24708 * localedata/locales/el_GR: Set n_cs_precedes to 0.
24709 * localedata/locales/el_CY: copy "el_GR" because it is identical.
24710 * stdlib/tst-strfmon_l.c: adapt test case.
24711
24712 2017-10-16 Joseph Myers <joseph@codesourcery.com>
24713
24714 * sysdeps/generic/float128-abi.h: New file.
24715 * sysdeps/ieee754/float128/Versions (FLOAT128_VERSION): Move
24716 non-__prefixed symbols to ....
24717 * math/Versions: ... here. Include <float128-abi.h>.
24718 * stdlib/Versions ... and here. Include <float128-abi.h>
24719
24720 2017-10-16 Florian Weimer <fweimer@redhat.com>
24721
24722 * version.h (VERSION): Switch to ".9000" as the development
24723 version suffix.
24724
24725 2017-10-16 Florian Weimer <fweimer@redhat.com>
24726
24727 [BZ #22050]
24728 * malloc/mcheck-init.c (__malloc_initialize_hook): Use
24729 compat_symbol_reference to access non-default version.
24730
24731 2017-10-16 Florian Weimer <fweimer@redhat.com>
24732
24733 * malloc/Makefile (others-extras): Set to mcheck-init.o.
24734
24735 2017-10-16 Carlos O'Donell <carlos@redhat.com>
24736
24737 * include/shlib-compat.h (compat_symbol_reference): Update
24738 comment.
24739
24740 2017-10-16 Joseph Myers <joseph@codesourcery.com>
24741
24742 * math/Makefile (test-types): Add
24743 $(type-float128-$(float128-alias-fcts)).
24744 * math/test-float128.h (TYPE_STR): Define conditional on
24745 [FLT128_MANT_DIG == LDBL_MANT_DIG].
24746 (ULP_IDX): Likewise.
24747 (ULP_I_IDX): Likewise.
24748
24749 * stdlib/strtold.c: Include <bits/floatn.h>
24750 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128): Define
24751 and later undefine as macro. Define as weak alias if
24752 [!USE_WIDE_CHAR].
24753 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128): Define
24754 and later undefine as macro. Define as weak alias if
24755 [USE_WIDE_CHAR].
24756 * sysdeps/ieee754/ldbl-128/strtold_l.c [__HAVE_FLOAT128 &&
24757 !__HAVE_DISTINCT_FLOAT128] (strtof128_l): Define and later
24758 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
24759 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
24760 Define and later undefine as macro. Define as weak alias if
24761 [USE_WIDE_CHAR].
24762 * sysdeps/ieee754/ldbl-64-128/strtold_l.c: Include
24763 <bits/floatn.h>.
24764 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128_l):
24765 Define and later undefine as macro. Define as weak alias if
24766 [!USE_WIDE_CHAR].
24767 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
24768 Define and later undefine as macro. Define as weak alias if
24769 [USE_WIDE_CHAR].
24770
24771 2017-10-15 Carlos O'Donell <carlos@redhat.com>
24772
24773 * localedata/collate-test.c (allocate_arrays): Don't use \n in
24774 record_verbose messages.
24775
24776 2017-10-15 H.J. Lu <hongjiu.lu@intel.com>
24777
24778 [BZ #22052]
24779 * malloc/hooks.c (realloc_check): Use DIAG_IGNORE_NEEDS_COMMENT
24780 to silence -O3 -Wall warning with GCC 7.
24781
24782 2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
24783
24784 * Makeconfig (+link-static-before-libc): Use the first of
24785 $(CRT-$(@F)) and $(csu-objpfx)$(static-start-installed-name).
24786 * gmon/Makefile (tests): Add tst-gmon-static.
24787 (tests-static): Likewise.
24788 (CFLAGS-tst-gmon-static.c): New.
24789 (CRT-tst-gmon-static): Likewise.
24790 (DEFAULT-LDFLAGS-tst-gmon-static): Likewise.
24791 (tst-gmon-static-ENV): Likewise.
24792 (tests-special): Likewise.
24793 ($(objpfx)tst-gmon-static.out): Likewise.
24794 (clean-tst-gmon-static-data): Likewise.
24795 ($(objpfx)tst-gmon-static-gprof.out): Likewise.
24796 * gmon/tst-gmon-static-gprof.sh: New file.
24797 * gmon/tst-gmon-static.c: Likewise.
24798
24799 2017-10-13 Carlos O'Donell <carlos@redhat.com>
24800
24801 [BZ #22295]
24802 * locale/programs/linereader.c (get_string): Don't warn on
24803 non-symbolic character.
24804
24805 [BZ #22294]
24806 * locale/programs/ld-monetary.c (monetary_finish): Allow ""
24807 int_curr_symbol.
24808
24809 [BZ #22292]
24810 * locale/programs/record-status.h: New file
24811 * locale/programs/locale.c: Add comment.
24812 * locale/programs/charmap-dir.c: Don't include error.h.
24813 (charmap_opendir): Use record_error.
24814 * locale/programs/charmap.c: Don't include error.h.
24815 (charmap_read): Use record_error, and record_warning.
24816 (parse_charmap): Likewise.
24817 * locale/programs/ld-address.c: Don't include error.h.
24818 (address_finish): Use record_error, and record_warning.
24819 * locale/programs/ld-collate.c: Don't include error.h.
24820 (collate_finish): Use record_error, and record_error_at_line.
24821 * locale/programs/ld-ctype.c (ctype_finish): Use record_error.
24822 (ctype_class_new): Likewise.
24823 (ctype_map_new): Likewise.
24824 (set_one_default): Likewise.
24825 (set_class_defaults): Likewise.
24826 (translit_flatten): Likewise.
24827 (allocate_arrays): Use record_error, and record_verbose.
24828 * locale/programs/ld-identification.c: Don't include error.h.
24829 (indentation_finish): Use record_error and record_warning.
24830 * locale/programs/ld-measurement.c: Don't include error.h.
24831 (measurement_finish): Use record_error.
24832 * locale/programs/ld-messages.c
24833 (message_finish): Likewise.
24834 * locale/programs/ld-monetary.c
24835 (monetary_finish): Likewise.
24836 * locale/programs/ld-name.c (name_finish): Use record_error
24837 and record_warning.
24838 * locale/programs/ld-numeric.c
24839 (numeric_finish): Use record_error.
24840 * locale/programs/ld-paper.c: Don't include error.h.
24841 (paper_finish): Use record_error.
24842 * locale/programs/ld-telephone.c: Don't include error.h.
24843 (telephone_finish): Use record_error.
24844 * locale/programs/ld-time.c (time_finish): Likewise.
24845 * locale/programs/linereader.h (lr_error): Make inline func.
24846 * locale/programs/localedef.c: Define recorded_warning_count,
24847 and recorded_error_count.
24848 (main): Use record_error. Use recorded_error_count and
24849 recorded_warning_count to issue correct error returns.
24850 (add_to_readlist): Use record_error.
24851 (find_locale): Likewise.
24852 (load_locale): Likewise.
24853 * locale/programs/localedef.h: Remove be_quiet
24854 and WITH_CUR_LOCALE.
24855 * locale/programs/locarchive.c (compare_from_file): Use
24856 record_error.
24857 * locale/programs/locfile.c (write_locale_data): Use
24858 record_error.
24859 * locale/programs/repertoire.c: Dont include error.h.
24860 (repertoire_complain): Use record_error.
24861 * localedata/tst-fmon.sh: Expect failures from localedef.
24862 * localedata/tst-locale.sh: Likewise.
24863 * localedata/gen-locale.sh: Expect failures from SHIFT_JIS.
24864
24865 * localedata/unicode-gen/Makefile (GENERATED): Use i18n_ctype.
24866 (REPORTS): Likewise.
24867 (check): Likewise.
24868 (i18n): Rename to...
24869 (i18n_ctype): ...this.
24870 (i18n-report): Rename to...
24871 (i18n_ctype-report): ...this.
24872 * localedata/locales/i18n_ctype: Regenerate.
24873 * localedata/locales/i18n: copy i18n_ctype.
24874
24875 2017-10-13 Joseph Myers <joseph@codesourcery.com>
24876
24877 * stdlib/strfroml.c: Include <bits/floatn.h>.
24878 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strfromf128):
24879 Define before include of <stdlib.h> and undefine afterwards, then
24880 define as weak alias.
24881
24882 * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c (weak_alias):
24883 Undefine and restore default definition. Use
24884 libm_alias_ldouble_other.
24885
24886 2017-10-13 Peter Zelezny <peter.zelezny@dektech.com.au>
24887
24888 [BZ #22153]
24889 * nptl/allocatestack.c (__nptl_setxid_error): Preserve error code
24890 in coredumps.
24891
24892 2017-10-13 James Clarke <jrtc27@jrtc27.com>
24893
24894 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
24895 Assign sym_map to be map for local symbols, as TLS relocations
24896 use sym_map to determine whether the symbol is defined and to
24897 extract the TLS information.
24898 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
24899 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
24900
24901 2017-10-13 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
24902
24903 [BZ #22189]
24904 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier):
24905 (math_force_eval): Add powerpc version.
24906
24907 [BZ #22142]
24908 * stdio-common/tst-printf.c (fp_test): Add tests for DBL_MAX and
24909 -DBL_MAX.
24910 (do_test): Likewise.
24911 * stdio-common/tst-printf.sh: Likewise.
24912 * sysdeps/powerpc/powerpc64/power7/add_n.S: Invert the initial
24913 ifdef clause in order to set the carry bit right. Replace r0 by
24914 0 without changing the behavior.
24915
24916 2017-10-13 Joseph Myers <joseph@codesourcery.com>
24917
24918 * sysdeps/sparc/sparc32/fpu/s_fabsl.c: Include
24919 <libm-alias-ldouble.h>.
24920 (fabsl): Define using libm_alias_ldouble.
24921 * sysdeps/sparc/sparc64/fpu/s_fabsl.c: Include
24922 <libm-alias-ldouble.h>.
24923 (fabsl): Define using libm_alias_ldouble.
24924
24925 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]:
24926 Remove conditional code.
24927
24928 * sysdeps/ieee754/ldbl-opt/s_clog10l.c (__clog10l__internal):
24929 Rename to __clog10_internal_l.
24930 (__clog10_internal_l): Define aliases using
24931 libm_alias_ldouble_other instead of using libm_alias_ldouble_other
24932 with __clog10.
24933
24934 2017-10-13 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
24935
24936 * benchtests/Makefile (bench-math): Add sinf, cosf and sincosf.
24937 * benchtests/sincosf-inputs: New file.
24938 * benchtests/cosf-inputs: New file.
24939 * benchtests/sinf-inputs: New file.
24940
24941 2017-10-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
24942
24943 * posix/tst-spawn.c (do_test): Wait for both children.
24944
24945 2017-10-12 H.J. Lu <hongjiu.lu@intel.com>
24946
24947 [BZ #22284]
24948 * gmon/Makefile [$(have-fpie)$(build-shared) == yesyes] (tests,
24949 tests-pie): Add tst-gmon-pie.
24950 (CFLAGS-tst-gmon-pie.c): New.
24951 (CRT-tst-gmon-pie): Likewise.
24952 (tst-gmon-pie-ENV): Likewise.
24953 [$(have-fpie)$(build-shared) == yesyes] (tests-special): Likewise.
24954 ($(objpfx)tst-gmon-pie.out): Likewise.
24955 (clean-tst-gmon-pie-data): Likewise.
24956 ($(objpfx)tst-gmon-pie-gprof.out): Likewise.
24957 * gmon/gmon.c [PIC]: Include <link.h>.
24958 [PIC] (callback): New function.
24959 (write_hist): Add an argument for load address. Subtract load
24960 address from PCs.
24961 (write_call_graph): Likewise.
24962 (write_gmon): Call __dl_iterate_phdr to get load address, pass
24963 it to write_hist and write_call_graph.
24964 * gmon/tst-gmon-pie.c: New file.
24965
24966 2017-10-11 Joseph Myers <joseph@codesourcery.com>
24967
24968 * math/Makefile (test-types-basic): New variable.
24969 (test-types): Likewise.
24970 (libm-test-support): Use $(test-types) instead of $(types).
24971 (libm-tests-base-normal): Likewise.
24972 (libm-tests-base-finite): Likewise.
24973 (libm-tests-base-inline): Likewise.
24974 (generated): Likewise.
24975 ($(objpfx)libm-test-support-$(t).c): Likewise.
24976 (libm-tests-for-type iterator): Likewise.
24977 (libm-test-support iterator): Likewise.
24978 * math/libm-test-support.c (ulp_i_idx): Use ULP_I_IDX.
24979 (ulp_idx): Use ULP_IDX.
24980 * math/test-ldouble.h: Include <float.h>.
24981 (TYPE_STR): Define conditional on [LDBL_MANT_DIG == DBL_MANT_DIG].
24982 (ULP_IDX): New macro.
24983 (ULP_I_IDX): Likewise.
24984 * math/test-double.h (ULP_IDX): Likewise.
24985 (ULP_I_IDX): Likewise.
24986 * math/test-float.h (ULP_IDX): Likewise.
24987 (ULP_I_IDX): Likewise.
24988 * math/test-float128.h (ULP_IDX): Likewise.
24989 (ULP_I_IDX): Likewise.
24990
24991 2017-10-11 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24992
24993 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Remove file.
24994 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
24995 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
24996 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: Likewise.
24997 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
24998 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: Likewise.
24999 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: Likewise.
25000 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
25001 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
25002 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
25003 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: Likewise.
25004 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
25005 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
25006 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
25007 (SINGLE_THREAD_BY_GLOBAL): Define.
25008 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25009 Likewise.
25010 * sysdeps/unix/sysv/linux/alpha/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25011 Likewise.
25012 * sysdeps/unix/sysv/linux/arm/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25013 Likewise.
25014 * sysdeps/unix/sysv/linux/hppa/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25015 Likewise.
25016 * sysdeps/unix/sysv/linux/microblaze/sysdep.h
25017 (SINGLE_THREAD_BY_GLOBAL): Likewise.
25018 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25019 Likewise.
25020
25021 2017-10-11 Andreas Schwab <schwab@suse.de>
25022
25023 * nis/Makefile (aux): Remove.
25024 * nscd/Makefile (aux): Add nscd_hash.
25025 (nscd-modules): Likewise.
25026 ($(objpfx)nscd): Don't depend on libnsl.
25027 * nscd/nscd_hash.c: New file.
25028 * nscd/nscd_hash.h: Likewise.
25029 * nscd/cache.c: Include "nscd_hash.h" instead of <rpcsvc/nis.h>.
25030 (cache_search, cache_add): Use __nscd_hash instead of __nis_hash.
25031 * nscd/nscd_helper.c: Include <sys/param.h> and "nscd_hash.h"
25032 instead of <nis/rpcsvc/nis.h>.
25033 (__nscd_cache_search): Use __nscd_hash instead of __nis_hash.
25034
25035 2017-10-11 Florian Weimer <fweimer@redhat.com>
25036
25037 [BZ #22078]
25038 Avoid large NSS buffers with many addresses, aliases.
25039 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Rewrite
25040 using dynarrays and struct alloc_buffer.
25041 * nss/Makefile (tests): Add tst-nss-files-hosts-multi.
25042 (tst-nss-files-hosts-multi): Link with -ldl.
25043 * nss/tst-nss-files-hosts-multi.c: New file.
25044
25045 2017-10-11 Florian Weimer <fweimer@redhat.com>
25046
25047 [BZ #18023]
25048 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Use struct
25049 scratch_buffer. Eliminate gotos.
25050
25051 2017-10-11 Joseph Myers <joseph@codesourcery.com>
25052
25053 * sysdeps/ieee754/ldbl-opt/s_clog10l.c: Use
25054 libm_alias_ldouble_other.
25055 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (weak_alias): Do not
25056 undefine and redefine.
25057 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
25058 (exp10l): Do not define here.
25059 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]
25060 (weak_alias): Undefine and redefine.
25061 [BUILD_LGAMMA]: Use libm_alias_ldouble_other.
25062 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
25063 [LIBM_SVID_COMPAT] (weak_alias): Undefine and redefine here.
25064 [LIBM_SVID_COMPAT]: Use libm_alias_ldouble_other.
25065
25066 * soft-fp/fmadf4.c: Include <libm-alias-double.h>.
25067 [!__fma] (fma): Define using libm_alias_double.
25068 * soft-fp/fmasf4.c: Include <libm-alias-float.h>.
25069 [!__fmaf] (fmaf): Define using libm_alias_float.
25070 * soft-fp/fmatf4.c: Include <libm-alias-ldouble.h>.
25071 (fmal): Define using libm_alias_ldouble.
25072
25073 2017-10-10 Joseph Myers <joseph@codesourcery.com>
25074
25075 * sysdeps/generic/libm-alias-double.h (libm_alias_double_other_r):
25076 New macro.
25077 (libm_alias_double_other): Likewise.
25078 (libm_alias_double_r): Use libm_alias_double_other_r.
25079 * sysdeps/generic/libm-alias-float.h (libm_alias_float_other_r):
25080 New macro.
25081 (libm_alias_float_other): Likewise.
25082 (libm_alias_float_r): Use libm_alias_float_other_r.
25083 * sysdeps/generic/libm-alias-float128.h
25084 (libm_alias_float128_other_r): New macro.
25085 (libm_alias_float128_other): Likewise.
25086 (libm_alias_float128_r): Use libm_alias_float128_other_r.
25087 * sysdeps/generic/libm-alias-ldouble.h
25088 (libm_alias_ldouble_other_r): New macro.
25089 (libm_alias_ldouble_other): Likewise.
25090 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
25091 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
25092 (libm_alias_double_other_r): New macro.
25093 (libm_alias_double_other): Likewise.
25094 (libm_alias_double_r): Use libm_alias_double_other_r.
25095 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
25096 (libm_alias_ldouble_other_r): New macro.
25097 (libm_alias_ldouble_other): Likewise.
25098 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
25099 * math/w_lgamma_main.c: Include <libm-alias-double.h>.
25100 [!USE_AS_COMPAT]: Use libm_alias_double_other.
25101 * math/w_lgammaf_main.c: Include <libm-alias-float.h>.
25102 [!USE_AS_COMPAT]: Use libm_alias_float_other.
25103 * math/w_lgammal_main.c: Include <libm-alias-ldouble.h>.
25104 [!USE_AS_COMPAT]: Use libm_alias_ldouble_other.
25105 * math/w_exp2f.c: Use libm_alias_float_other.
25106 * math/w_expf.c: Likewise.
25107 * math/w_log2f.c: Likewise.
25108 * math/w_logf.c: Likewise.
25109 * math/w_powf.c: Likewise.
25110 * sysdeps/ieee754/flt-32/e_exp2f.c: Include <libm-alias-float.h>.
25111 [!__exp2f]: Use libm_alias_float_other.
25112 * sysdeps/ieee754/flt-32/e_expf.c: Include <libm-alias-float.h>.
25113 [!__expf]: Use libm_alias_float_other.
25114 * sysdeps/ieee754/flt-32/e_log2f.c: Include <libm-alias-float.h>.
25115 [!__log2f]: Use libm_alias_float_other.
25116 * sysdeps/ieee754/flt-32/e_logf.c: Include <libm-alias-float.h>.
25117 [!__logf]: Use libm_alias_float_other.
25118 * sysdeps/ieee754/flt-32/e_powf.c: Include <libm-alias-float.h>.
25119 [!__powf]: Use libm_alias_float_other.
25120
25121 2017-10-10 Florian Weimer <fweimer@redhat.com>
25122
25123 * nss/nss_files/files-hosts.c (gethostbyname3_multi): New
25124 function.
25125 (_nss_files_gethostbyname3_r): Call it.
25126
25127 2017-10-09 Joseph Myers <joseph@codesourcery.com>
25128
25129 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias]: Give
25130 error. Remove default definition of declare_mgen_alias.
25131 [!declare_mgen_alias_r]: Likewise.
25132 * sysdeps/generic/math-type-macros-double.h
25133 [!declare_mgen_alias_r] (declare_mgen_alias_r): New macro.
25134 * sysdeps/generic/math-type-macros-float.h [!declare_mgen_alias_r]
25135 (declare_mgen_alias_r): Likewise.
25136 * sysdeps/generic/math-type-macros-float128.h
25137 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
25138 * sysdeps/generic/math-type-macros-ldouble.h
25139 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
25140 * math/w_lgamma_r_template.c (declare_mgen_alias_r_x): Remove
25141 macro.
25142 (declare_mgen_alias_r_s): Likewise.
25143 (declare_mgen_alias_r): Likewise.
25144 * math/w_lgamma_r_compat.c: Include <libm-alias-double.h>.
25145 (lgamma_r): Define using libm_alias_double_r.
25146 * math/w_lgammaf_r_compat.c: Include <libm-alias-float.h>.
25147 (lgammaf_r): Define using libm_alias_float_r.
25148 * math/w_lgammal_r_compat.c: Include <libm-alias-ldouble.h>.
25149 (lgammal_r): Define using libm_alias_ldouble_r.
25150 * sysdeps/ieee754/ldbl-opt/w_lgamma_r_compat.c: Remove file.
25151 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
25152
25153 2017-10-09 Adhemerval Zanella <adhemerval.zanella@linaro.org>
25154
25155 * lib/glob.c (__glob_pattern_type): Remove now-spurious
25156 extern declaration.
25157
25158 2017-10-09 Joseph Myers <joseph@codesourcery.com>
25159
25160 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Remove file.
25161
25162 2017-10-09 Jonathan Wakely <jwakely@redhat.com>
25163
25164 [BZ #21326]
25165 * include/features.h [__cplusplus >= 201703] (__USE_ISOC11): Define.
25166 [__cplusplus >= 201103] (__USE_ISOC99): Define.
25167 * math/Makefile (test-math-cxx11): New test.
25168 * math/test-math-cxx11.cc: New file.
25169
25170 2017-10-08 Christian Brauner <christian.brauner@ubuntu.com>
25171
25172 * login/openpty.c (openpty): Close slave pty file descriptor on error.
25173
25174 * login/openpty.c (openpty): If defined, use the TIOCGPTPEER ioctl()
25175 call to allocate the slave pty file descriptor.
25176
25177 2017-10-06 Joseph Myers <joseph@codesourcery.com>
25178
25179 * sysdeps/ieee754/ldbl-128/s_fma.c: Include <libm-alias-double.h>.
25180 [!__fma] (fma): Define using libm_alias_double.
25181 * sysdeps/ieee754/ldbl-96/s_fma.c: Include <libm-alias-double.h>.
25182 [!__fma] (fma): Define using libm_alias_double.
25183
25184 * sysdeps/ieee754/float128/float128_private.h: Include
25185 <libm-alias-ldouble.h> and <libm-alias-float128.h>.
25186 (libm_alias_ldouble_r): Undefine and redefine.
25187 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Include
25188 <libm-alias-ldouble.h>.
25189 (asinhl): Define using libm_alias_ldouble.
25190 * sysdeps/ieee754/ldbl-128/s_atanl.c: Include
25191 <libm-alias-ldouble.h>.
25192 (atanl): Define using libm_alias_ldouble.
25193 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Include
25194 <libm-alias-ldouble.h>.
25195 (cbrtl): Define using libm_alias_ldouble.
25196 * sysdeps/ieee754/ldbl-128/s_ceill.c: Include
25197 <libm-alias-ldouble.h>.
25198 (ceill): Define using libm_alias_ldouble.
25199 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Include
25200 <libm-alias-ldouble.h>.
25201 (copysignl): Define using libm_alias_ldouble.
25202 * sysdeps/ieee754/ldbl-128/s_cosl.c: Include
25203 <libm-alias-ldouble.h>.
25204 (cosl): Define using libm_alias_ldouble.
25205 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include
25206 <libm-alias-ldouble.h>.
25207 (erfl): Define using libm_alias_ldouble.
25208 (erfcl): Likewise.
25209 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include
25210 <libm-alias-ldouble.h>.
25211 (expm1l): Define using libm_alias_ldouble.
25212 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Include
25213 <libm-alias-ldouble.h>.
25214 (fabsl): Define using libm_alias_ldouble.
25215 * sysdeps/ieee754/ldbl-128/s_floorl.c: Include
25216 <libm-alias-ldouble.h>.
25217 (floorl): Define using libm_alias_ldouble.
25218 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include
25219 <libm-alias-ldouble.h>.
25220 (fmal): Define using libm_alias_ldouble.
25221 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Include
25222 <libm-alias-ldouble.h>.
25223 (frexpl): Define using libm_alias_ldouble.
25224 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (fromfpl): Define using
25225 libm_alias_ldouble.
25226 * sysdeps/ieee754/ldbl-128/s_fromfpl_main.c: Include
25227 <libm-alias-ldouble.h>.
25228 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (fromfpxl): Define using
25229 libm_alias_ldouble.
25230 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c: Include
25231 <libm-alias-ldouble.h>.
25232 (getpayloadl): Define using libm_alias_ldouble.
25233 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Include
25234 <libm-alias-ldouble.h>.
25235 (llrintl): Define using libm_alias_ldouble.
25236 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Include
25237 <libm-alias-ldouble.h>.
25238 (llroundl): Define using libm_alias_ldouble.
25239 * sysdeps/ieee754/ldbl-128/s_logbl.c: Include
25240 <libm-alias-ldouble.h>.
25241 (logbl): Define using libm_alias_ldouble.
25242 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Include
25243 <libm-alias-ldouble.h>.
25244 (lrintl): Define using libm_alias_ldouble.
25245 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Include
25246 <libm-alias-ldouble.h>.
25247 (lroundl): Define using libm_alias_ldouble.
25248 * sysdeps/ieee754/ldbl-128/s_modfl.c: Include
25249 <libm-alias-ldouble.h>.
25250 (modfl): Define using libm_alias_ldouble.
25251 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Include
25252 <libm-alias-ldouble.h>.
25253 (nearbyintl): Define using libm_alias_ldouble.
25254 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Include
25255 <libm-alias-ldouble.h>.
25256 (nextafterl): Define using libm_alias_ldouble.
25257 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Include
25258 <libm-alias-ldouble.h>.
25259 (nextupl): Define using libm_alias_ldouble.
25260 * sysdeps/ieee754/ldbl-128/s_remquol.c: Include
25261 <libm-alias-ldouble.h>.
25262 (remquol): Define using libm_alias_ldouble.
25263 * sysdeps/ieee754/ldbl-128/s_rintl.c: Include
25264 <libm-alias-ldouble.h>.
25265 (rintl): Define using libm_alias_ldouble.
25266 * sysdeps/ieee754/ldbl-128/s_roundevenl.c: Include
25267 <libm-alias-ldouble.h>.
25268 (roundevenl): Define using libm_alias_ldouble.
25269 * sysdeps/ieee754/ldbl-128/s_roundl.c: Include
25270 <libm-alias-ldouble.h>.
25271 (roundl): Define using libm_alias_ldouble.
25272 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (setpayloadl): Define
25273 using libm_alias_ldouble.
25274 * sysdeps/ieee754/ldbl-128/s_setpayloadl_main.c: Include
25275 <libm-alias-ldouble.h>.
25276 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (setpayloadsigl):
25277 Define using libm_alias_ldouble.
25278 * sysdeps/ieee754/ldbl-128/s_sincosl.c: Include
25279 <libm-alias-ldouble.h>.
25280 (sincosl): Define using libm_alias_ldouble.
25281 * sysdeps/ieee754/ldbl-128/s_sinl.c: Include
25282 <libm-alias-ldouble.h>.
25283 (sinl): Define using libm_alias_ldouble.
25284 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Include
25285 <libm-alias-ldouble.h>.
25286 (tanhl): Define using libm_alias_ldouble.
25287 * sysdeps/ieee754/ldbl-128/s_tanl.c: Include
25288 <libm-alias-ldouble.h>.
25289 (tanl): Define using libm_alias_ldouble.
25290 * sysdeps/ieee754/ldbl-128/s_totalorderl.c: Include
25291 <libm-alias-ldouble.h>.
25292 (totalorderl): Define using libm_alias_ldouble.
25293 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c: Include
25294 <libm-alias-ldouble.h>.
25295 (totalordermagl): Define using libm_alias_ldouble.
25296 * sysdeps/ieee754/ldbl-128/s_truncl.c: Include
25297 <libm-alias-ldouble.h>.
25298 (truncl): Define using libm_alias_ldouble.
25299 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (ufromfpl): Define using
25300 libm_alias_ldouble.
25301 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (ufromfpxl): Define using
25302 libm_alias_ldouble.
25303 * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Include
25304 <libm-alias-ldouble.h>.
25305 (weak_alias): Do not undefine and redefine.
25306 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25307 (copysignl): Define with long_double_symbol only if [IS_IN
25308 (libc)].
25309 * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Include
25310 <libm-alias-ldouble.h>.
25311 (weak_alias): Do not undefine and redefine.
25312 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25313 (frexpl): Define with long_double_symbol only if [IS_IN (libc)].
25314 * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Include
25315 <libm-alias-ldouble.h>.
25316 (weak_alias): Do not undefine and redefine.
25317 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25318 (modfl): Define with long_double_symbol only if [IS_IN (libc)].
25319 * sysdeps/ieee754/ldbl-64-128/s_asinhl.c: Remove file.
25320 * sysdeps/ieee754/ldbl-64-128/s_atanl.c: Likewise.
25321 * sysdeps/ieee754/ldbl-64-128/s_cbrtl.c: Likewise.
25322 * sysdeps/ieee754/ldbl-64-128/s_ceill.c: Likewise.
25323 * sysdeps/ieee754/ldbl-64-128/s_cosl.c: Likewise.
25324 * sysdeps/ieee754/ldbl-64-128/s_erfl.c: Likewise.
25325 * sysdeps/ieee754/ldbl-64-128/s_expm1l.c: Likewise.
25326 * sysdeps/ieee754/ldbl-64-128/s_fabsl.c: Likewise.
25327 * sysdeps/ieee754/ldbl-64-128/s_floorl.c: Likewise.
25328 * sysdeps/ieee754/ldbl-64-128/s_fmal.c: Likewise.
25329 * sysdeps/ieee754/ldbl-64-128/s_llrintl.c: Likewise.
25330 * sysdeps/ieee754/ldbl-64-128/s_llroundl.c: Likewise.
25331 * sysdeps/ieee754/ldbl-64-128/s_logbl.c: Likewise.
25332 * sysdeps/ieee754/ldbl-64-128/s_lrintl.c: Likewise.
25333 * sysdeps/ieee754/ldbl-64-128/s_lroundl.c: Likewise.
25334 * sysdeps/ieee754/ldbl-64-128/s_nearbyintl.c: Likewise.
25335 * sysdeps/ieee754/ldbl-64-128/s_remquol.c: Likewise.
25336 * sysdeps/ieee754/ldbl-64-128/s_rintl.c: Likewise.
25337 * sysdeps/ieee754/ldbl-64-128/s_roundl.c: Likewise.
25338 * sysdeps/ieee754/ldbl-64-128/s_sincosl.c: Likewise.
25339 * sysdeps/ieee754/ldbl-64-128/s_sinl.c: Likewise.
25340 * sysdeps/ieee754/ldbl-64-128/s_tanhl.c: Likewise.
25341 * sysdeps/ieee754/ldbl-64-128/s_tanl.c: Likewise.
25342 * sysdeps/ieee754/ldbl-64-128/s_truncl.c: Likewise.
25343
25344 2017-10-06 Carlos O'Donell <carlos@redhat.com>
25345
25346 [BZ #22111]
25347 * malloc/malloc.c (tcache_shutting_down): Use bool type.
25348 (tcache_thread_freeres): Set tcache_shutting_down before
25349 freeing the tcache.
25350 * malloc/Makefile (tests): Add tst-malloc-tcache-leak.
25351 * malloc/tst-malloc-tcache-leak.c: New file.
25352
25353 2017-10-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
25354
25355 * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: Revert
25356 back to powerpc32 file.
25357 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
25358 (memrchr): Add __memrchr_power8 to ifunc list.
25359 * sysdeps/powerpc/powerpc64/power8/memrchr.S: Mask
25360 extra bytes for unaligned inputs.
25361
25362 2017-10-06 Joseph Myers <joseph@codesourcery.com>
25363
25364 * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: Remove file.
25365 * sysdeps/ieee754/ldbl-64-128/s_log1pl.c: Likewise.
25366 * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c: Likewise.
25367 * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
25368 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
25369
25370 2017-10-05 Joseph Myers <joseph@codesourcery.com>
25371
25372 * sysdeps/arm/libm-test-ulps: Update.
25373
25374 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Include
25375 <libm-alias-ldouble.h>.
25376 (asinhl): Define using libm_alias_ldouble.
25377 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Include
25378 <libm-alias-ldouble.h>.
25379 (cbrtl): Define using libm_alias_ldouble.
25380 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Include
25381 <libm-alias-ldouble.h>.
25382 (copysignl): Define using libm_alias_ldouble.
25383 * sysdeps/ieee754/ldbl-96/s_cosl.c: Include
25384 <libm-alias-ldouble.h>.
25385 (cosl): Define using libm_alias_ldouble.
25386 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include
25387 <libm-alias-ldouble.h>.
25388 (erfl): Define using libm_alias_ldouble.
25389 (erfcl): Likewise.
25390 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include
25391 <libm-alias-ldouble.h>.
25392 (fmal): Define using libm_alias_ldouble.
25393 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Include
25394 <libm-alias-ldouble.h>.
25395 (frexpl): Define using libm_alias_ldouble.
25396 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (fromfpl): Define using
25397 libm_alias_ldouble.
25398 * sysdeps/ieee754/ldbl-96/s_fromfpl_main.c: Include
25399 <libm-alias-ldouble.h>.
25400 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (fromfpxl): Define using
25401 libm_alias_ldouble.
25402 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c: Include
25403 <libm-alias-ldouble.h>.
25404 (getpayloadl): Define using libm_alias_ldouble.
25405 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Include
25406 <libm-alias-ldouble.h>.
25407 (llrintl): Define using libm_alias_ldouble.
25408 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Include
25409 <libm-alias-ldouble.h>.
25410 (llroundl): Define using libm_alias_ldouble.
25411 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Include
25412 <libm-alias-ldouble.h>.
25413 (lrintl): Define using libm_alias_ldouble.
25414 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Include
25415 <libm-alias-ldouble.h>.
25416 (lroundl): Define using libm_alias_ldouble.
25417 * sysdeps/ieee754/ldbl-96/s_modfl.c: Include
25418 <libm-alias-ldouble.h>.
25419 (modfl): Define using libm_alias_ldouble.
25420 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Include
25421 <libm-alias-ldouble.h>.
25422 (nextupl): Define using libm_alias_ldouble.
25423 * sysdeps/ieee754/ldbl-96/s_remquol.c: Include
25424 <libm-alias-ldouble.h>.
25425 (remquol): Define using libm_alias_ldouble.
25426 * sysdeps/ieee754/ldbl-96/s_roundevenl.c: Include
25427 <libm-alias-ldouble.h>.
25428 (roundevenl): Define using libm_alias_ldouble.
25429 * sysdeps/ieee754/ldbl-96/s_roundl.c: Include
25430 <libm-alias-ldouble.h>.
25431 (roundl): Define using libm_alias_ldouble.
25432 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (setpayloadl): Define
25433 using libm_alias_ldouble.
25434 * sysdeps/ieee754/ldbl-96/s_setpayloadl_main.c: Include
25435 <libm-alias-ldouble.h>.
25436 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c: Include
25437 <libm-alias-ldouble.h>.
25438 (setpayloadsigl): Define using libm_alias_ldouble.
25439 * sysdeps/ieee754/ldbl-96/s_sincosl.c: Include
25440 <libm-alias-ldouble.h>.
25441 (sincosl): Define using libm_alias_ldouble.
25442 * sysdeps/ieee754/ldbl-96/s_sinl.c: Include
25443 <libm-alias-ldouble.h>.
25444 (sinl): Define using libm_alias_ldouble.
25445 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Include
25446 <libm-alias-ldouble.h>.
25447 (tanhl): Define using libm_alias_ldouble.
25448 * sysdeps/ieee754/ldbl-96/s_tanl.c: Include
25449 <libm-alias-ldouble.h>.
25450 (tanl): Define using libm_alias_ldouble.
25451 * sysdeps/ieee754/ldbl-96/s_totalorderl.c: Include
25452 <libm-alias-ldouble.h>.
25453 (totalorderl): Define using libm_alias_ldouble.
25454 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c: Include
25455 <libm-alias-ldouble.h>.
25456 (totalordermagl): Define using libm_alias_ldouble.
25457 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (ufromfpl): Define using
25458 libm_alias_ldouble.
25459 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (ufromfpxl): Define using
25460 libm_alias_ldouble.
25461
25462 2017-10-05 Siddhesh Poyarekar <siddhesh@sourceware.org>
25463
25464 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
25465 memmove_falkor.
25466 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
25467 (__libc_ifunc_impl_list): Likewise.
25468 * sysdeps/aarch64/multiarch/memmove.c: Likewise.
25469 * sysdeps/aarch64/multiarch/memmove_falkor.S: New file.
25470
25471 * benchtests/bench-memmove-walk.c: New file.
25472 * benchtests/Makefile (string-benchset): Add it.
25473
25474 * benchtests/bench-memset-walk.c: New file.
25475 * benchtests/Makefile (string-benchset): Add it.
25476
25477 * benchtests/bench-memcpy-walk.c: New file.
25478 * benchtests/Makefile (string-benchset): Add it.
25479
25480 2017-10-05 Florian Weimer <fweimer@redhat.com>
25481
25482 nscd: Eliminate compilation time dependency in the build output.
25483 * nscd/nscd_stat.c (STATDATA_VERSION)
25484 (STATDATA_VERSION_SELINUX_FLAG, STATDATA_VERSION_FLAGS)
25485 (STATDATA_VERSION_FULL): New macro definitions.
25486 (compilation): Remove.
25487 (struct statdata): Adjust version member.
25488 (send_stats): Set version from STATDATA_VERSION_FULL.
25489 (receive_print_stats): Verify version against STATDATA_VERSION_FULL.
25490
25491 2017-10-05 Joseph Myers <joseph@codesourcery.com>
25492
25493 * configure.ac (--enable-add-ons): Remove option.
25494 (machine): Do not mention add-ons in comment.
25495 (LIBC_PRECONFIGURE): Likewise.
25496 (add_ons): Remove variable and sanity checks and logic to locate
25497 add-ons.
25498 (add_ons_automatic): Remove variable.
25499 (configured_add_ons): Likewise.
25500 (add_ons_sfx): Likewise.
25501 (add_ons_pfx): Likewise.
25502 (add_on_subdirs): Likewise.
25503 (sysnames_add_ons): Likewise. Remove loop over add-ons and
25504 consideration of add-ons in Implies handling.
25505 (sysdeps_add_ons): Likewise.
25506 * configure: Regenerated.
25507 * libidn/configure.ac: Remove.
25508 * libidn/configure: Likewise.
25509 * sysdeps/unix/inet/configure.ac: New file.
25510 * sysdeps/unix/inet/configure: New generated file.
25511 * sysdeps/unix/inet/Subdirs: Add libidn.
25512 * Makeconfig (sysdeps-srcdirs): Remove variable.
25513 (+sysdep_dirs): Do not include $(sysdeps-srcdirs).
25514 ($(common-objpfx)config.status): Do not depend on add-on files.
25515 ($(common-objpfx)shlib-versions.v.i): Do not mention add-ons in
25516 comment.
25517 (all-subdirs): Do not include $(add-on-subdirs).
25518 * Makefile (dist-prepare): Do not use $(sysdeps-add-ons).
25519 * config.make.in (add-ons): Remove variable.
25520 (add-on-subdirs): Likewise.
25521 (sysdeps-add-ons): Likewise.
25522 * manual/Makefile (add-chapters): Remove.
25523 ($(objpfx)texis): Do not depend on $(add-chapters).
25524 (nonexamples): Do not handle $(add-chapters).
25525 (examples): Do not handle $(add-ons).
25526 (chapters.% top-menu.%): Do not pass '$(add-chapters)' to
25527 libc-texinfo.sh.
25528 * manual/install.texi (Installation): Do not mention add-ons.
25529 (--enable-add-ons): Do not document configure option.
25530 * INSTALL: Regenerated.
25531 * manual/libc-texinfo.sh: Do not handle $2 add-ons argument.
25532 * manual/maint.texi (Hierarchy Conventions): Do not mention
25533 add-ons.
25534 * scripts/build-many-glibcs.py (Glibc.build_glibc): Do not use
25535 --enable-add-ons.
25536 * scripts/gen-sorted.awk: Do not handle Subdirs files from
25537 add-ons.
25538 * scripts/test-installation.pl: Do not handle glibc-compat add-on.
25539 * sysdeps/nptl/Makeconfig: Do not mention add-ons in comment.
25540
25541 2017-10-05 Andreas Schwab <schwab@suse.de>
25542
25543 [BZ #15142]
25544 * libio/genops.c (_IO_list_all_stamp): Delete. All uses removed.
25545 (_IO_flush_all_lockp): Always lock list_all_lock.
25546 (_IO_flush_all_linebuffered): Likewise.
25547 (_IO_unbuffer_all): Likewise.
25548
25549 2017-10-05 Florian Weimer <fweimer@redhat.com>
25550
25551 [BZ #15436]
25552 Do not flush stdio streams on abort.
25553 * stdlib/abort.c (fflush): Remove macro definition.
25554 (abort): Remove stages related to stdio flushing.
25555
25556 2017-10-05 Florian Weimer <fweimer@redhat.com>
25557
25558 * gmon/Makefile (CFLAGS-tst-gmon.c): Add -fno-omit-frame-pointer.
25559
25560 2017-10-05 Stefan Liebler <stli@linux.vnet.ibm.com>
25561
25562 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
25563
25564 2017-10-05 Florian Weimer <fweimer@redhat.com>
25565
25566 * support/support_format_hostent.c (support_format_hostent): Add
25567 more error information for NETDB_INTERNAL.
25568
25569 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25570
25571 * config.h.in (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New.
25572 * include/libc-symbols.h (__hidden_proto_hiddenattr): Add check
25573 for PIC and NO_HIDDEN_EXTERN_FUNC_IN_PIE.
25574 * sysdeps/i386/configure.ac (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New
25575 AC_DEFINE if multi-arch is enabled.
25576 * sysdeps/i386/configure: Regenerated.
25577
25578 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25579
25580 * Makeconfig (+link-static-before-libc): Use
25581 $(DEFAULT-LDFLAGS-$(@F)).
25582 * elf/Makefile (CRT-tst-tls1-static-non-pie): New.
25583 (LDFLAGS-tst-tls1-static-non-pie): Renamed to ...
25584 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): This.
25585
25586 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25587
25588 * elf/Makefile (tests): Add tst-main1.
25589 (modules-names): Add tst-main1mod.
25590 ($(objpfx)tst-main1): New.
25591 (CRT-tst-main1): Likewise.
25592 (LDFLAGS-tst-main1): Likewise.
25593 (LDLIBS-tst-main1): Likewise.
25594 (tst-main1mod.so-no-z-defs): Likewise.
25595 * elf/tst-main1.c: New file.
25596 * elf/tst-main1mod.c: Likewise.
25597
25598 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25599
25600 * math/test-math-iscanonical.cc (do_test): Return errors != 0.
25601
25602 2017-10-04 Joseph Myers <joseph@codesourcery.com>
25603
25604 * sysdeps/ieee754/dbl-64/s_fma.c: Include <libm-alias-double.h>.
25605 (fma): Define using libm_alias_double.
25606 * sysdeps/ieee754/ldbl-opt/s_fma.c: Remove file.
25607 * sysdeps/sparc/sparc32/fpu/s_fma.c: Do not include
25608 <math_ldbl_opt.h>.
25609 (fmal): Do not define as compat symbol here.
25610 * sysdeps/alpha/fpu/s_fma.c: New file.
25611
25612 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25613
25614 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Expand MIN.
25615
25616 2017-10-04 Joseph Myers <joseph@codesourcery.com>
25617
25618 [BZ #22229]
25619 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
25620 <math_ldbl_opt.h>
25621 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
25622 and libc.
25623 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include <math_ldbl_opt.h>.
25624 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
25625 * sysdeps/sparc/sparc32/fpu/s_fma.c: Include <math_ldbl_opt.h>.
25626 (fmal): Define as compat symbol at version GLIBC_2_1 for libm.
25627 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
25628 Include <math_ldbl_opt.h>
25629 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
25630 and libc.
25631 (compat_symbol): Undefine and redefine.
25632 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
25633 <math_ldbl_opt.h>
25634 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
25635 (compat_symbol): Undefine and redefine.
25636 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c
25637 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h>.
25638 [HAVE_AS_VIS3_SUPPORT] (fmal): Define as compat symbol at version
25639 GLIBC_2_1 for libm.
25640 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Add
25641 GLIBC_2.0 copysignl symbol.
25642 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
25643 GLIBC_2.0 copysignl and fabsl and GLIBC_2.1 fmal symbols.
25644
25645 * sysdeps/alpha/fpu/s_nearbyint.c: Remove file.
25646
25647 2017-10-04 Florian Weimer <fweimer@redhat.com>
25648
25649 * scripts/check-local-headers.sh: Ignore nspr4 header file
25650 directory in addition to nspr.
25651
25652 2017-10-04 Guido Trentalancia <guido@trentalancia.net>
25653
25654 [BZ #17956]
25655 * configure.ac (--enable-nss-crypt): Use NSPR include directory.
25656 * configure: Regenerate.
25657 * crypt/Makefile (nss-cpp-flags): New variable.
25658 (CPPFLAGS-sha256-crypt.c, CPPFLAGS-sha512-crypt.c)
25659 (CPPFLAGS-md5-crypt.c): Use it.
25660 * scripts/check-local-headers.sh: Ignore nspr header file
25661 directory.
25662
25663 2017-10-04 Andreas Schwab <schwab@suse.de>
25664
25665 * nis/Makefile (services): Remove compat.
25666 (libnss_compat-routines, libnss_compat-inhibit-o): Don't define.
25667 ($(objpfx)libnss_compat.so): Remove rule.
25668 * nis/Versions (libnss_compat): Remove.
25669 * nss/Makefile (services): Add compat.
25670 (libnss_compat-routines, libnss_compat-inhibit-o): Define.
25671 * nss/Versions (libnss_compat): Define.
25672 * nss/nss_compat/compat-grp.c: Moved here from nis/nss_compat.
25673 Don't include <rpc/types.h>. Replace bool_t by bool.
25674 * nss/nss_compat/compat-initgroups.c: Likewise.
25675 * nss/nss_compat/compat-pwd.c: Likewise. Include "nisdomain.h"
25676 instead of <rpcsrv/ypclnt.h>.
25677 (getpwent_next_nss_netgr): Use __nss_get_default_domain instead of
25678 yp_get_default_domain.
25679 * nss/nss_compat/compat-pwd.c: Likewise.
25680 (getspent_next_nss_netgr): Use __nss_get_default_domain instead of
25681 yp_get_default_domain.
25682 * nss/nss_compat/nisdomain.c: New file.
25683 * nss/nss_compat/nisdomain.h: Likewise.
25684
25685 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25686
25687 [BZ #22244]
25688 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Fix x == 0 case.
25689 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
25690
25691 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25692
25693 [BZ #22243]
25694 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10): Use fabs.
25695 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2): Likewise.
25696
25697 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25698
25699 * sysdeps/i386/start.S: Replace "leal main@GOT(%ebx), %eax" with
25700 "movl main@GOTOFF(%ebx), %eax".
25701
25702 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25703
25704 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Don't
25705 allow undefined _DYNAMIC in PIE libc.a.
25706 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
25707 Likewse.
25708
25709 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25710
25711 * sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
25712 check _DYNAMIC.
25713
25714 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25715
25716 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
25717 check _DYNAMIC.
25718
25719 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25720
25721 * math/test-math-iscanonical.cc (error): Replace bool with int.
25722
25723 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25724
25725 * sysdeps/ieee754/dbl-64/s_modf.c: Include <libm-alias-double.h>.
25726 (modf): Define using libm_alias_double, only if [!__modf].
25727 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Include
25728 <libm-alias-double.h>.
25729 (modf): Define using libm_alias_double, only if [!__modf].
25730 * sysdeps/ieee754/ldbl-opt/s_modf.c (modfl): Only define libc
25731 compat symbol here.
25732 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c
25733 (weak_alias): Do not undefine and redefine.
25734 (strong_alias): Likewise.
25735 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
25736 (weak_alias): Likewise.
25737 (strong_alias): Likewise.
25738
25739 * sysdeps/ieee754/dbl-64/s_logb.c: Include <libm-alias-double.h>.
25740 (logb): Define using libm_alias_double, only if [!__logb].
25741 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Include
25742 <libm-alias-double.h>.
25743 (logb): Define using libm_alias_double, only if [!__logb].
25744 * sysdeps/ieee754/ldbl-opt/s_logb.c: Remove file.
25745 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c
25746 (weak_alias): Do not undefine and redefine.
25747 (strong_alias): Likewise.
25748 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c
25749 (weak_alias): Likewise.
25750 (strong_alias): Likewise.
25751
25752 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25753
25754 * sysdeps/unix/sysv/linux/tile/sysdep.h (SYSCALL_ERROR_NAME):
25755 Check SHARED instead PIC.
25756
25757 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25758
25759 * sysdeps/ieee754/dbl-64/s_fmaf.c: Include <libm-alias-float.h>.
25760 [!__fmaf] (fmaf): Define using libm_alias_float.
25761
25762 * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
25763 (frexp): Define using libm_alias_double.
25764 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
25765 <libm-alias-double.h>.
25766 (frexp): Define using libm_alias_double.
25767 * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
25768 compat symbol here.
25769
25770 2017-10-03 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
25771
25772 [BZ #22235]
25773 * math/math.h: Trivial fix for unbalanced parentheses in comment.
25774 * math/Makefile [CXX] (tests): Add test-math-iscanonical.cc.
25775 (CFLAGS-test-math-iscanonical.cc): New variable.
25776 * math/test-math-iscanonical.cc: New file.
25777 * sysdeps/ieee754/ldbl-96/bits/iscanonical.h (iscanonical):
25778 Provide a C++ implementation based on function overloading,
25779 rather than using __MATH_TG, which uses C-only builtins.
25780 * sysdeps/ieee754/ldbl-128ibm/bits/iscanonical.h (iscanonical):
25781 Likewise.
25782 * sysdeps/powerpc/powerpc64le/Makefile
25783 (CFLAGS-test-math-iscanonical.cc): New variable.
25784
25785 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25786
25787 * sysdeps/ieee754/dbl-64/s_ceil.c: Include <libm-alias-double.h>.
25788 (ceil): Define using libm_alias_double.
25789 * sysdeps/ieee754/dbl-64/s_floor.c: Include <libm-alias-double.h>.
25790 (floor): Define using libm_alias_double.
25791 * sysdeps/ieee754/dbl-64/s_llround.c: Include
25792 <libm-alias-double.h>.
25793 (llround): Define using libm_alias_double.
25794 * sysdeps/ieee754/dbl-64/s_lround.c: Include
25795 <libm-alias-double.h>.
25796 (lround): Define using libm_alias_double.
25797 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Include
25798 <libm-alias-double.h>.
25799 (nearbyint): Define using libm_alias_double.
25800 * sysdeps/ieee754/dbl-64/s_remquo.c: Include
25801 <libm-alias-double.h>.
25802 (remquo): Define using libm_alias_double.
25803 * sysdeps/ieee754/dbl-64/s_rint.c: Include <libm-alias-double.h>.
25804 (rint): Define using libm_alias_double.
25805 * sysdeps/ieee754/dbl-64/s_round.c: Include <libm-alias-double.h>.
25806 (round): Define using libm_alias_double.
25807 * sysdeps/ieee754/dbl-64/s_trunc.c: Include <libm-alias-double.h>.
25808 (trunc): Define using libm_alias_double.
25809 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Include
25810 <libm-alias-double.h>.
25811 (ceil): Define using libm_alias_double.
25812 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Include
25813 <libm-alias-double.h>.
25814 (floor): Define using libm_alias_double.
25815 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: Include
25816 <libm-alias-double.h>.
25817 (llround): Define using libm_alias_double.
25818 [_LP64] (lround): Likewise.
25819 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Include
25820 <libm-alias-double.h>.
25821 [!_LP64] (lround): Define using libm_alias_double.
25822 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Include
25823 <libm-alias-double.h>.
25824 (nearbyint): Define using libm_alias_double.
25825 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Include
25826 <libm-alias-double.h>.
25827 (remquo): Define using libm_alias_double.
25828 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Include
25829 <libm-alias-double.h>.
25830 (rint): Define using libm_alias_double.
25831 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Include
25832 <libm-alias-double.h>.
25833 (round): Define using libm_alias_double.
25834 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Include
25835 <libm-alias-double.h>.
25836 (trunc): Define using libm_alias_double.
25837 * sysdeps/ieee754/ldbl-opt/s_ceil.c: Remove file.
25838 * sysdeps/ieee754/ldbl-opt/s_floor.c: Likewise.
25839 * sysdeps/ieee754/ldbl-opt/s_llround.c: Likewise.
25840 * sysdeps/ieee754/ldbl-opt/s_lround.c: Likewise.
25841 * sysdeps/ieee754/ldbl-opt/s_nearbyint.c: Likewise.
25842 * sysdeps/ieee754/ldbl-opt/s_remquo.c: Likewise.
25843 * sysdeps/ieee754/ldbl-opt/s_rint.c: Likewise.
25844 * sysdeps/ieee754/ldbl-opt/s_round.c: Likewise.
25845 * sysdeps/ieee754/ldbl-opt/s_trunc.c: Likewise.
25846
25847 2017-10-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
25848
25849 * math/w_remainder.c: New file.
25850 * math/w_remainderf.c: New file.
25851 * math/w_remainderl.c: New file.
25852
25853 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25854
25855 * elf/rtld.c (BOOTSTRAP_MAP): New.
25856 (RESOLVE_MAP): Replace (&bootstrap_map) with BOOTSTRAP_MAP.
25857 * sysdeps/hppa/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25858 Likewise.
25859 * sysdeps/ia64/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25860 Likewise.
25861 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25862 Likewise.
25863
25864 2017-10-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
25865
25866 * include/libc-symbols.h [NO_RTLD_HIDDEN] (rtld_hidden_proto,
25867 rtld_hidden_tls_proto, rtld_hidden_def, rtld_hidden_weak,
25868 rtld_hidden_rtld_hidden_ver, data_def, rtld_hidden_data_weak,
25869 rtld_hidden_data_ver): Define to empty.
25870 * include/assert.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__assert_fail,
25871 __assert_perror_fail): Likewise.
25872 * include/dirent.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25873 (__rewinddir): Likewise.
25874 * include/libc-internal.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25875 (__profile_frequency): Likewise.
25876 * include/setjmp.h (__sigsetjmp): Likewise.
25877 * include/signal.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__sigaction,
25878 __libc_sigaction): Likewise.
25879 * include/stdlib.h [NO_RTLD_HIDDEN] (unsetenv, __strtoul_internal): Do
25880 not set hidden attribute.
25881 * include/string.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__stpcpy, __strdup,
25882 __strerror_t, __strsep_g, memchr, memcmp, memcpy, memmove, memset,
25883 rawmemchr, stpcpy, strchr, strcmp, strlen, strnlen, strsep): Likewise.
25884 * include/sys/stat.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__fxstat,
25885 __fxstat64, __lxstat, __lxstat64, __xstat, __xstat64,
25886 __fxstatat64): Likewise.
25887 * include/sys/utsname.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25888 (__uname): Likewise.
25889 * include/sysdeps/generic/_itoa.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25890 (_itoa_upper_digits, _itoa_lower_digits): Likewise.
25891 * sysdeps/mach/hurd/configure.ac (NO_HIDDEN): Do not set.
25892 (NO_RTLD_HIDDEN): Set.
25893 * sysdeps/mach/hurd/configure: Refresh.
25894 * config.h.in: Refresh.
25895
25896 2017-10-02 Joseph Myers <joseph@codesourcery.com>
25897
25898 * sysdeps/ieee754/dbl-64/s_atan.c: Include <libm-alias-double.h>.
25899 (atan): Define using libm_alias_double.
25900 * sysdeps/ieee754/dbl-64/s_tan.c: Include <libm-alias-double.h>.
25901 (tan): Define using libm_alias_double.
25902 * sysdeps/ieee754/ldbl-opt/s_atan.c: Remove file.
25903 * sysdeps/ieee754/ldbl-opt/s_tan.c: Likewise.
25904
25905 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Rename to __atan and
25906 define as weak alias of __atan. Do not define any aliases if
25907 [__atan].
25908 [NO_LONG_DOUBLE] (__atanl): Define as strong alias of __atan.
25909 [NO_LONG_DOUBLE] (atanl): Define as weak alias of __atanl.
25910 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Rename to __tan and define
25911 as weak alias of __tan. Do not define any aliases if [__tan].
25912 [NO_LONG_DOUBLE] (__tanl): Define as strong alias of __tan.
25913 [NO_LONG_DOUBLE] (tanl): Define as weak alias of __tanl.
25914 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c (atan): Rename to
25915 __atan.
25916 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c (atan): Likewise.
25917 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c (atan): Likewise.
25918 * sysdeps/x86_64/fpu/multiarch/s_atan.c (atan): Rename to __atan
25919 and define as weak alias of __atan.
25920 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c (tan): Rename to
25921 __atan.
25922 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c (tan): Likewise.
25923 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (tan): Likewise.
25924 * sysdeps/x86_64/fpu/multiarch/s_tan.c (tan): Rename to __tan and
25925 define as weak alias of __tan.
25926
25927 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25928
25929 * math/w_lgamma.c: New file.
25930 * math/w_lgammaf.c: New file.
25931 * math/w_lgammal.c: New file.
25932
25933 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25934
25935 * sysdeps/ieee754/flt-32/e_log2f.c (__log2f): Define without wrapper.
25936 * sysdeps/ieee754/flt-32/e_logf.c (__logf): Likewise
25937 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Likewise
25938 * sysdeps/ieee754/flt-32/w_log2f.c: New file.
25939 * sysdeps/ieee754/flt-32/w_logf.c: New file.
25940 * sysdeps/ieee754/flt-32/w_powf.c: New file.
25941 * sysdeps/i386/fpu/w_log2f.c: New file.
25942 * sysdeps/i386/fpu/w_logf.c: New file.
25943 * sysdeps/i386/fpu/w_powf.c: New file.
25944 * sysdeps/m68k/m680x0/fpu/w_log2f.c: New file.
25945 * sysdeps/m68k/m680x0/fpu/w_logf.c: New file.
25946 * sysdeps/m68k/m680x0/fpu/w_powf.c: New file.
25947
25948 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25949 H.J. Lu <hongjiu.lu@intel.com>
25950
25951 * sysdeps/ieee754/flt-32/e_exp2f.c (__exp2f): Define without wrapper.
25952 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Likewise
25953 * sysdeps/ieee754/flt-32/w_exp2f.c: New file.
25954 * sysdeps/ieee754/flt-32/w_expf.c: New file.
25955 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-ppc64.c: Update for
25956 the new expf code.
25957 * sysdeps/powerpc/powerpc64/fpu/multiarch/w_expf.c: New file.
25958 * sysdeps/powerpc/powerpc64/power8/fpu/w_expf.c: New file.
25959 * sysdeps/m68k/m680x0/fpu/w_exp2f.c: New file.
25960 * sysdeps/m68k/m680x0/fpu/w_expf.c: New file.
25961 * sysdeps/i386/fpu/w_exp2f.c: New file.
25962 * sysdeps/i386/fpu/w_expf.c: New file.
25963 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: New file.
25964 * sysdeps/x86_64/fpu/w_expf.c: New file.
25965
25966 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25967
25968 * math/Versions (logf): New libm symbol at GLIBC_2.27.
25969 (log2f): Likewise.
25970 (powf): Likewise.
25971 * math/w_log2f.c: New file.
25972 * math/w_logf.c: New file.
25973 * math/w_powf.c: New file.
25974 * math/w_log2f_compat.c (__log2f_compat): For compat symbol only.
25975 * math/w_logf_compat.c (__logf_compat): Likewise.
25976 * math/w_powf_compat.c (__powf_compat): Likewise.
25977 * sysdeps/ia64/fpu/e_log2f.S: Add versioned symbols.
25978 * sysdeps/ia64/fpu/e_logf.S: Likewise.
25979 * sysdeps/ia64/fpu/e_powf.S: Likewise.
25980 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
25981 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
25982 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
25983 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
25984 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
25985 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
25986 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
25987 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
25988 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
25989 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
25990 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
25991 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
25992 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
25993 Likewise.
25994 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
25995 Likewise.
25996 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
25997 Likewise.
25998 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
25999 Likewise.
26000 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
26001 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
26002 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
26003 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
26004 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
26005 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
26006 Likewise.
26007 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
26008 Likewise.
26009 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
26010 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
26011 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
26012
26013 2017-10-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
26014
26015 * sysdeps/powerpc/powerpc64/multiarch/Makefile
26016 (sysdep_routines): Add memrchr_power8.
26017 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
26018 (memrchr): Add __memrchr_power8 to list of memrchr functions.
26019 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S:
26020 New file.
26021 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
26022 (memrchr): Add __memrchr_power8 to ifunc list.
26023 * sysdeps/powerpc/powerpc64/power8/memrchr.S: New file.
26024
26025 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26026
26027 [BZ #18822]
26028 * sysdeps/unix/sysv/linux/posix_fadvise64.c
26029 (__posix_fadvise64_l64): Add Add libc_hidden_proto and
26030 libc_hidden_def.
26031 * sysdeps/unix/sysv/linux/posix_fallocate64.c
26032 (__posix_fallocate64_l64): Likewise.
26033
26034 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26035
26036 [BZ #18822]
26037 * sysdeps/unix/sysv/linux/sched_setaffinity.c
26038 (__sched_setaffinity_new): Add libc_hidden_proto and
26039 libc_hidden_def.
26040
26041 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26042
26043 [BZ #18822]
26044 * include/glob.h (__glob64): Add libc_hidden_proto.
26045 * sysdeps/unix/sysv/linux/glob64.c (__glob64): Add
26046 libc_hidden_def.
26047
26048 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26049
26050 [BZ #18822]
26051 * sysdeps/unix/sysv/linux/getrlimit64.c (__new_getrlimit): Add
26052 attribute_hidden.
26053
26054 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26055
26056 [BZ #18822]
26057 * stdlib/exit.h (__new_exitfn): Add attribute_hidden.
26058
26059 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26060
26061 [BZ #18822]
26062 * mon/gmon.c (__moncontrol): Add libc_hidden_proto and
26063 libc_hidden_def.
26064
26065 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26066
26067 [BZ #18822]
26068 * csu/version.c (__libc_print_version): Add attribute_hidden.
26069
26070 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26071
26072 [BZ #18822]
26073 * include/libc-internal.h (__init_misc): Add attribute_hidden.
26074
26075 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26076
26077 [BZ #18822]
26078 * include/fpu_control.h (__setfpucw): Add attribute_hidden.
26079
26080 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26081
26082 [BZ #18822]
26083 * nscd/nscd_helper.c (__nis_hash): New prototype.
26084
26085 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26086
26087 [BZ #18822]
26088 * include/termios.h (__tcgetattr): Add libc_hidden_proto.
26089 * sysdeps/unix/bsd/tcgetattr.c (__tcgetattr): Add
26090 libc_hidden_def.
26091 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
26092 * termios/tcgetattr.c (__tcgetattr): Likewise.
26093
26094 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26095
26096 [BZ #18822]
26097 * include/sys/resource.h (__setrlimit): Add libc_hidden_proto.
26098 * resource/setrlimit.c (__setrlimit): Add libc_hidden_def.
26099 * sysdeps/mach/hurd/setrlimit.c (__setrlimit): Likewise.
26100 * sysdeps/unix/sysv/linux/setrlimit.c (__setrlimit): Likewise.
26101 * sysdeps/unix/sysv/linux/setrlimit64.c (__GI___setrlimit): New.
26102
26103 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26104
26105 [BZ #18822]
26106 * include/monetary.h (__vstrfmon_l): Add attribute_hidden.
26107
26108 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26109
26110 [BZ #18822]
26111 * include/sched.h (__sched_setparam): Add libc_hidden_proto.
26112 * posix/sched_setp.c (__sched_setparam): Add libc_hidden_def.
26113
26114 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26115
26116 [BZ #18822]
26117 * intl/hash-string.h (__hash_string): Add attribute_hidden.
26118
26119 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26120
26121 [BZ #18822]
26122 * include/mntent.h (__hasmntopt): Add libc_hidden_proto.
26123 * misc/mntent_r.c (__hasmntopt): Add libc_hidden_def.
26124
26125 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26126
26127 [BZ #18822]
26128 * include/ifreq.h: New file.
26129 * sysdeps/generic/ifreq.h (__if_nextreq): Removed.
26130 (__ifreq): Likewise.
26131 * sysdeps/mach/hurd/ifreq.h (__if_nextreq): Removed.
26132 (__ifreq): Likewise.
26133
26134 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26135
26136 [BZ #18822]
26137 * include/idna.h: New file.
26138 * inet/getnameinfo.c: Include <idna.h> instead of
26139 <libidn/idna.h>.
26140 (__idna_to_unicode_lzlz): Removed.
26141 * sysdeps/posix/getaddrinfo.c: Include <idna.h> instead of
26142 <libidn/idna.h>.
26143 (__idna_to_ascii_lz): Removed.
26144 (__idna_to_unicode_lzlz): Likewise.
26145
26146 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26147
26148 [BZ #18822]
26149 * include/plural-exp.h: New file.
26150 * intl/plural-exp.c: Include <plural-exp.h> instead of
26151 "plural-exp.h".
26152
26153 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26154
26155 [BZ #18822]
26156 * sysdeps/unix/sysv/linux/getsourcefilter.c: Include
26157 "getsourcefilter.h".
26158 * sysdeps/unix/sysv/linux/getsourcefilter.h: New file.
26159 * sysdeps/unix/sysv/linux/setsourcefilter.c: Include
26160 "getsourcefilter.h".
26161 (__get_sol): Removed.
26162
26163 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26164
26165 [BZ #18822]
26166 * elf/dl-iteratephdr.c (hidden_proto (__dl_iterate_phdr)): Moved
26167 to ...
26168 * include/link.h (hidden_proto (__dl_iterate_phdr)): Here.
26169
26170 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26171
26172 [BZ #18822]
26173 * sysdeps/unix/sysv/linux/getpt.c (__bsd_getpt): Add
26174 attribute_hidden.
26175
26176 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26177
26178 [BZ #18822]
26179 * libio/iolibio.h (__fopen_maybe_mmap): Add attribute_hidden.
26180
26181 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26182
26183 [BZ #18822]
26184 * include/search.h (__tdestroy): Add libc_hidden_proto.
26185 * misc/tsearch.c (__tdestroy): Add libc_hidden_def.
26186
26187 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26188
26189 [BZ #18822]
26190 * include/assert.h (__assert_fail_base): Add attribute_hidden.
26191
26192 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26193
26194 [BZ #18822]
26195 * sysdeps/unix/sysv/linux/include/sys/sysinfo.h (__sysinfo): Add
26196 attribute_hidden.
26197
26198 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26199
26200 [BZ #18822]
26201 * include/signal.h (__kill): Add libc_hidden_proto.
26202 (__sigblock): Likewise.
26203 (__sigprocmask): Likewise.
26204 (__sigaltstack): Likewise.
26205 * signal/kill.c (__kill): Add libc_hidden_def.
26206 * signal/sigblock.c (__sigblock): Likewise.
26207 * signal/sigprocmask.c (__sigprocmask): Likewise.
26208 * sysdeps/mach/hurd/kill.c (__kill): Likewise.
26209 * sysdeps/mach/hurd/sigaltstack.c (__sigaltstack): Likewise.
26210 * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Likewise.
26211 * sysdeps/posix/sigblock.c (__sigblock): Likewise.
26212 * sysdeps/unix/sysv/linux/alpha/sigprocmask.c (__sigprocmask):
26213 Likewise.
26214 * sysdeps/unix/sysv/linux/ia64/sigprocmask.c (__sigprocmask):
26215 Likewise.
26216 * sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c
26217 (__sigprocmask): Likewise.
26218 * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask):
26219 Likewise.
26220 * /sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c
26221 (__sigprocmask): Likewise.
26222 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c (__sigprocmask):
26223 Likewise.
26224
26225 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26226
26227 [BZ #18822]
26228 * include/string.h (__strsep): Add libc_hidden_proto.
26229 * string/strsep.c (__strsep): Add libc_hidden_def.
26230
26231 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26232
26233 [BZ #18822]
26234 * posix/spawn_int.h (__posix_spawn_file_actions_realloc): Add
26235 attribute_hidden.
26236 (__spawni): Likewise.
26237
26238 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26239
26240 [BZ #18822]
26241 * include/sys/mman.h (__mremap): Add libc_hidden_proto.
26242 * sysdeps/unix/sysv/linux/m68k/mremap.S (__mremap): Add
26243 libc_hidden_def.
26244
26245 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26246
26247 [BZ #18822]
26248 * include/malloc.h (__malloc_check_init): Add attribute_hidden.
26249
26250 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26251
26252 [BZ #18822]
26253 * include/sys/ioctl.h (__ioctl): Add libc_hidden_proto.
26254 * misc/ioctl.c (__ioctl): Add libc_hidden_def.
26255 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
26256 * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Likewise.
26257 * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl):
26258 Likewise.
26259 * sysdeps/unix/sysv/linux/powerpc/ioctl.c (__ioctl): Likewise.
26260 * sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S (__ioctl): Likewise.
26261
26262 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26263
26264 [BZ #18822]
26265 * intl/gettextP.h (__dcngettext): Add attribute_hidden.
26266 (__dcigettext): Likewise.
26267
26268 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26269
26270 [BZ #18822]
26271 * include/sys/sysinfo.h (__get_nprocs_conf): Add
26272 libc_hidden_proto.
26273 (__get_nprocs): Likewise.
26274 (__get_phys_pages): Likewise.
26275 (__get_avphys_pages): Likewise.
26276 (__get_child_max): Add attribute_hidden.
26277 * misc/getsysstats.c (__get_nprocs_conf): Add libc_hidden_def.
26278 (__get_nprocs): Likewise.
26279 (__get_phys_pages): Likewise.
26280 (__get_avphys_pages): Likewise.
26281 * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Add
26282 libc_hidden_def.
26283 (__get_nprocs): Likewise.
26284 (__get_phys_pages): Likewise.
26285 (__get_avphys_pages): Likewise.
26286 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Add
26287 libc_hidden_def.
26288 (__get_nprocs_conf): Likewise.
26289 (__get_phys_pages): Likewise.
26290 (__get_avphys_pages): Likewise.
26291
26292 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26293
26294 [BZ #18822]
26295 * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_open): Add
26296 attribute_hidden.
26297 (__netlink_close): Likewise.
26298 (__netlink_free_handle): Likewise.
26299 (__netlink_request): Likewise.
26300
26301 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26302
26303 [BZ #18822]
26304 * include/rpc/rpc.h (__rpc_thread_variables): Add
26305 attribute_hidden.
26306 (__rpc_thread_svc_cleanup): Likewise.
26307 (__rpc_thread_clnt_cleanup): Likewise.
26308 (__rpc_thread_key_cleanup): Likewise.
26309
26310 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26311
26312 [BZ #18822]
26313 * include/sys/uio.h (__readv): Add libc_hidden_proto.
26314 (__writev): Likewise.
26315 * misc/readv.c (__readv): Add libc_hidden_def.
26316 * misc/writev.c (__writev): Likewise.
26317 * sysdeps/posix/readv.c (__readv): Likewise.
26318 * sysdeps/posix/writev.c (__writev): Likewise.
26319 * sysdeps/unix/sysv/linux/readv.c: Include <sys/uio.h>.
26320 (__readv): Likewise.
26321 * sysdeps/unix/sysv/linux/writev.c: Include <sys/uio.h>.
26322 (__writev): Likewise.
26323
26324 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26325
26326 [BZ #18822]
26327 * include/regex.h (__re_compile_fastmap): Add attribute_hidden.
26328 (__regcomp): Add libc_hidden_proto.
26329 (__regexec): Likewise.
26330 (__regfree): Likewise.
26331 * posix/regcomp.c (__regcomp): Add libc_hidden_def.
26332 (__regfree): Likewise.
26333 * posix/regexec.c (__regexec): Likewise.
26334
26335 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26336
26337 [BZ #18822]
26338 * include/utmp.h (__updwtmp): Add libc_hidden_proto.
26339 (__getutent): Likewise.
26340 (__getutid): Likewise.
26341 (__getutline): Likewise.
26342 (__pututline): Likewise.
26343 (__getutent_r): Likewise.
26344 (__getutid_r): Likewise.
26345 (__getutline_r): Likewise.
26346 (__utmpname): Add attribute_hidden.
26347 (__setutent): Likewise.
26348 (__endutent): Likewise.
26349 * login/getutent.c (__getutent): Add libc_hidden_def.
26350 * login/getutent_r.c (__getutent_r): Likewise.
26351 (__pututline): Likewise.
26352 * login/getutid.c (__getutid): Likewise.
26353 * login/getutid_r.c (__getutid_r): Likewise.
26354 * login/getutline.c (__getutline): Likewise.
26355 * login/getutline_r.c (__getutline_r): Likewise.
26356 * login/updwtmp.c (__updwtmp): Likewise.
26357
26358 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26359
26360 [BZ #18822]
26361 * include/dirent.h (__opendir): Always add attribute_hidden.
26362 (__fdopendir): Likewise.
26363 (__closedir): Likewise.
26364 (__readdir): Likewise.
26365 (__readdir64): Add libc_hidden_proto.
26366 * sysdeps/mach/hurd/readdir64.c (__readdir64): Add libc_hidden_def.
26367 * sysdeps/unix/sysv/linux/i386/readdir64.c (__readdir64): Likewise.
26368 * sysdeps/unix/sysv/linux/readdir64.c (__readdir64): Likewise.
26369 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c (__GI___readdir64):
26370 New alias.
26371
26372 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26373
26374 [BZ #18822]
26375 * include/aliases.h (__getaliasbyname_r): Add attribute_hidden.
26376 * include/netdb.h (__gethostbyaddr_r): Likewise.
26377 (__gethostbyname_r): Likewise.
26378 (__gethostbyname2_r): Likewise.
26379 (__getnetbyaddr_r): Likewise.
26380 (__getnetbyname_r): Likewise.
26381 (__getservbyname_r): Likewise.
26382 (__getservbyport_r): Likewise.
26383 (__getprotobyname_r): Likewise.
26384 (__getprotobynumber_r): Likewise.
26385 (__getnetgrent_r): Likewise.
26386 * include/rpc/netdb.h (__getrpcbyname_r): Likewise.
26387 (__getrpcbynumber_r): Likewise.
26388 * nss/getXXbyYY.c (INTERNAL (REENTRANT_NAME)): Likewise.
26389
26390 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26391
26392 [BZ #18822]
26393 * include/stdio.h (__fcloseall): Add attribute_hidden.
26394 (__getline): Likewise.
26395 (__path_search): Likewise.
26396 (__gen_tempname): Likewise.
26397 (__libc_message): Likewise.
26398 (__flockfile): Likewise.
26399 (__funlockfile): Likewise.
26400 (__fxprintf): Likewise.
26401 (__fxprintf_nocancel): Likewise.
26402
26403 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26404
26405 [BZ #18822]
26406 * include/gshadow.h (__fgetsgent_r): Add attribute_hidden.
26407 (__sgetsgent_r): Likewise.
26408
26409 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26410
26411 [BZ #18822]
26412 * include/sys/statfs.h (__fstatfs): Add attribute_hidden.
26413 (__statfs64): Likewise.
26414 (__fstatfs64): Likewise.
26415 * include/sys/statvfs.h (__statvfs64): Likewise.
26416 (__fstatvfs64): Likewise.
26417 * sysdeps/unix/sysv/linux/pathconf.h (__statfs_link_max): Likewise.
26418 (__statfs_filesize_max): Likewise.
26419 (__statfs_symlinks): Likewise.
26420 (__statfs_chown_restricted): Likewise.
26421
26422 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26423
26424 [BZ #18822]
26425 * include/time.h (__tzstring): Add attribute_hidden.
26426 (__tzfile_read): Likewise.
26427 (__tzfile_compute): Likewise.
26428 (__tzfile_default): Likewise.
26429 (__tzset_parse_tz): Likewise.
26430 (__offtime): Likewise.
26431 (__asctime_r): Likewise.
26432 (__tzset): Likewise.
26433 (__tz_convert): Likewise.
26434 (__getdate_r): Likewise.
26435 (__getclktck): Likewise.
26436
26437 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26438
26439 [BZ #18822]
26440 * nscd/nscd-client.h (__nscd_get_map_ref): Add attribute_hidden.
26441 (__nscd_unmap): Likewise.
26442 (__nscd_cache_search): Likewise.
26443 (__nscd_get_nl_timestamp): Likewise.
26444 (__nscd_getpwnam_r): Likewise.
26445 (__nscd_getpwuid_r): Likewise.
26446 (__nscd_getgrnam_r): Likewise.
26447 (__nscd_getgrgid_r): Likewise.
26448 (__nscd_gethostbyname_r): Likewise.
26449 (__nscd_gethostbyname2_r): Likewise.
26450 (__nscd_gethostbyaddr_r): Likewise.
26451 (__nscd_getai): Likewise.
26452 (__nscd_getgrouplist): Likewise.
26453 (__nscd_getservbyname_r): Likewise.
26454 (__nscd_getservbyport_r): Likewise.
26455 (__nscd_innetgr): Likewise.
26456 (__nscd_setnetgrent): Likewise.
26457
26458 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26459
26460 [BZ #18822]
26461 * include/gmp.h: Declare internal functions only if _ISOMAC is
26462 undefined.
26463 (__mpn_extract_double): Add attribute_hidden.
26464 (__mpn_extract_long_double): Likewise.
26465 (__mpn_extract_float128): Likewise.
26466 (__mpn_construct_float): Likewise.
26467 (__mpn_construct_double): Likewise.
26468 (__mpn_construct_long_double): Likewise.
26469 (__mpn_construct_float128): Likewise.
26470 (mpn_add_1): Likewise.
26471 (mpn_addmul_1): Likewise.
26472 (mpn_add_n): Likewise.
26473 (mpn_cmp): Likewise.
26474 (mpn_divrem): Likewise.
26475 (mpn_lshift): Likewise.
26476 (mpn_mul): Likewise.
26477 (mpn_mul_1): Likewise.
26478 (mpn_rshift): Likewise.
26479 (mpn_sub_1): Likewise.
26480 (mpn_submul_1): Likewise.
26481 (mpn_sub_n): Likewise.
26482
26483 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26484
26485 [BZ #18822]
26486 * include/wchar.h (__wcsnlen): Add attribute_hidden.
26487 (__wcscat): Likewise.
26488 (__btowc): Likewise.
26489 (__wcrtomb): Likewise.
26490 (__mbsrtowcs): Likewise.
26491 (__wcsrtombs): Likewise.
26492 (__mbsnrtowcs): Likewise.
26493 (__wcsnrtombs): Likewise.
26494 (__wcsncpy): Likewise.
26495 (__wcpncpy): Likewise.
26496 (__wmemcpy): Likewise.
26497 (__wmempcpy): Likewise.
26498 (__wmemmove): Likewise.
26499 (__wcschrnul): Likewise.
26500 (__vfwscanf): Likewise.
26501 (__vswprintf): Likewise.
26502 (__fwprintf): Likewise.
26503 (__vfwprintf): Likewise.
26504
26505 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26506
26507 [BZ #18822]
26508 * include/grp.h (__fgetgrent_r): Add attribute_hidden.
26509 (__getgrgid_r): Likewise.
26510 (__getgrnam_r): Likewise.
26511 * include/pwd.h (__getpwuid_r): Likewise.
26512 (__getpwnam_r): Likewise.
26513 (__fgetpwent_r): Likewise.
26514 * include/shadow.h (__getspnam_r): Likewise.
26515 (__sgetspent_r): Likewise.
26516 (__fgetspent_r): Likewise.
26517
26518 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26519
26520 [BZ #18822]
26521 * include/unistd.h (__access): Add attribute_hidden.
26522 (__lseek64): Likewise.
26523 (__libc_pread64): Likewise.
26524 (__pipe2): Likewise.
26525 (__sleep): Likewise.
26526 (__chdir): Likewise.
26527 (__fchdir): Likewise.
26528 (__getcwd): Likewise.
26529 (__rmdir): Likewise.
26530 (__execvpe): Likewise.
26531 (__execve): Likewise.
26532 (__setsid): Likewise.
26533 (__getuid): Likewise.
26534 (__geteuid): Likewise.
26535 (__getgid): Likewise.
26536 (__getegid): Likewise.
26537 (__getgroups): Likewise.
26538 (__group_member): Likewise.
26539 (__ttyname_r): Likewise.
26540 (__isatty): Likewise.
26541 (__readlink): Likewise.
26542 (__unlink): Likewise.
26543 (__gethostname): Likewise.
26544 (__profil): Likewise.
26545 (__getdtablesize): Likewise.
26546 (__brk): Likewise.
26547 (__ftruncate): Likewise.
26548 (__ftruncate64): Likewise.
26549
26550 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26551
26552 [BZ #18822]
26553 * argp/argp-fmtstream.c: Include <argp-fmtstream.h>.
26554 * argp/argp-fs-xinl.c: Likewise.
26555 * argp/argp-help.c: Include <argp.h> and <argp-fmtstream.h>.
26556 * argp/argp-parse.c: Include <argp.h>.
26557 * argp/argp-xinl.c: Likewise.
26558 * include/argp-fmtstream.h: New file.
26559 * include/argp.h (__argp_error): Add attribute_hidden.
26560 (__argp_failure): Likewise.
26561 (__argp_input): Likewise.
26562 (__argp_state_help): Likewise.
26563
26564 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26565
26566 [BZ #18822]
26567 * include/wchar.h (____wcstof_l_internal): New prototype.
26568 (____wcstod_l_internal): Likewise.
26569 (____wcstold_l_internal): Likewise.
26570 (____wcstol_l_internal): Likewise.
26571 (____wcstoul_l_internal): Likewise.
26572 (____wcstoll_l_internal): Likewise.
26573 (____wcstoull_l_internal): Likewise.
26574 (____wcstof128_l_internal): Likewise.
26575 * sysdeps/ieee754/float128/wcstof128.c
26576 (____wcstof128_l_internal): Removed.
26577 * sysdeps/ieee754/float128/wcstof128_l.c
26578 (____wcstof128_l_internal): Likewise.
26579 * wcsmbs/wcstod.c (____wcstod_l_internal): Likewise.
26580 * wcsmbs/wcstod_l.c (____wcstod_l_internal): Likewise.
26581 * wcsmbs/wcstof.c (____wcstof_l_internal): Likewise.
26582 * wcsmbs/wcstof_l.c (____wcstof_l_internal): Likewise.
26583 * wcsmbs/wcstol_l.c (____wcstol_l_internal): Likewise.
26584 * wcsmbs/wcstold.c (____wcstold_l_internal): Likewise.
26585 * wcsmbs/wcstold_l.c (____wcstold_l_internal): Likewise.
26586 * wcsmbs/wcstoll_l.c (____wcstoll_l_internal): Likewise.
26587 * wcsmbs/wcstoul_l.c (____wcstoul_l_internal): Likewise.
26588 * wcsmbs/wcstoull_l.c (____wcstoull_l_internal): Likewise.
26589
26590 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26591
26592 [BZ #18822]
26593 * sysdeps/unix/sysv/linux/fstatvfs.c: Include "internal_statvfs.h"
26594 instead of <sys/statvfs.h>.
26595 (__internal_statvfs): Removed.
26596 * sysdeps/unix/sysv/linux/fstatvfs64.c Include "internal_statvfs.h"
26597 instead of <sys/statvfs.h>.
26598 (__internal_statvfs64): Removed.
26599 * sysdeps/unix/sysv/linux/internal_statvfs.c: Include
26600 "internal_statvfs.h" instead of <sys/statvfs.h>.
26601 * sysdeps/unix/sysv/linux/internal_statvfs.h: New file.
26602 * sysdeps/unix/sysv/linux/statvfs.c Include "internal_statvfs.h"
26603 instead of <sys/statvfs.h>.
26604 (__internal_statvfs): Removed.
26605 * sysdeps/unix/sysv/linux/statvfs64.c Include "internal_statvfs.h"
26606 instead of <sys/statvfs.h>.
26607 (__internal_statvfs64): Removed.
26608
26609 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26610
26611 [BZ #18822]
26612 * iconv/gconv_int.h (__gconv_open): Add attribute_hidden.
26613 (__gconv_close): Likewise.
26614 (__gconv): Likewise.
26615 (__gconv_find_transform): Likewise.
26616 (__gconv_lookup_cache): Likewise.
26617 (__gconv_compare_alias_cache): Likewise.
26618 (__gconv_load_cache): Likewise.
26619 (__gconv_get_path): Likewise.
26620 (__gconv_close_transform): Likewise.
26621 (__gconv_release_cache): Likewise.
26622 (__gconv_find_shlib): Likewise.
26623 (__gconv_release_shlib): Likewise.
26624 (__gconv_get_builtin_trans): Likewise.
26625 (__gconv_compare_alias): Likewise.
26626 * include/dlfcn.h (_dlerror_run): Likewise.
26627 * include/stdio.h (__fortify_fail_abort): Likewise.
26628 * include/time.h (__tz_compute): Likewise.
26629 (__strptime_internal): Likewise.
26630 * intl/gettextP.h (_nl_find_domain): Likewise.
26631 (_nl_load_domain): Likewise.
26632 (_nl_find_msg): Likewise.
26633 * intl/plural-exp.h (FREE_EXPRESSION): Likewise.
26634 (EXTRACT_PLURAL_EXPRESSION): Likewise.
26635 * locale/coll-lookup.h (__collidx_table_lookup): Likewise.
26636 * resolv/gai_misc.h (__gai_enqueue_request): Likewise.
26637 (__gai_find_request): Likewise.
26638 (__gai_remove_request): Likewise.
26639 (__gai_notify): Likewise.
26640 (__gai_notify_only): Likewise.
26641 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
26642 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
26643 (_dl_non_dynamic_init): Likewise.
26644 (_dl_aux_init): Likewise.
26645 * sysdeps/i386/machine-gmon.h (mcount_internal): Likewise.
26646 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
26647 Likewise.
26648 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv): Likewise.
26649 (__wcsmbs_clone_conv): Likewise.
26650 (__wcsmbs_named_conv): Likewise.
26651
26652 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26653
26654 [BZ #18822]
26655 * include/stdlib.h (__random): Add attribute_hidden.
26656 (__random_r): Likewise.
26657 (__srandom_r): Likewise.
26658 (__initstate_r): Likewise.
26659 (__setstate_r): Likewise.
26660 (__erand48_r): Likewise.
26661 (__nrand48_r): Likewise.
26662 (__jrand48_r): Likewise.
26663 (__srand48_r): Likewise.
26664 (__seed48_r): Likewise.
26665 (__lcong48_r): Likewise.
26666 (__drand48_iterate): Likewise.
26667 (__setenv): Likewise.
26668 (__unsetenv): Likewise.
26669 (__clearenv): Likewise.
26670 (__ptsname_r): Likewise.
26671 (__posix_openpt): Likewise.
26672 (__add_to_environ): Likewise.
26673 (__realpath): Add libc_hidden_proto.
26674 (__ecvt_r): Likewise.
26675 (__fcvt_r): Likewise.
26676 (__qecvt_r): Likewise.
26677 (__qfcvt_r): Likewise.
26678 * misc/efgcvt_r.c (cvt_symbol_1): Add libc_hidden_def (local).
26679 * stdlib/canonicalize.c (__realpath): Add libc_hidden_def.
26680
26681 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26682
26683 [BZ #18822]
26684 * include/stdlib.h (__ptsname_internal): Add attribute_hidden.
26685 * include/time.h (__mktime_internal): Likewise.
26686 * libio/iolibio.h (__fopen_internal): Likewise.
26687
26688 2017-10-01 John David Anglin <danglin@gcc.gnu.org>
26689
26690 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Save return
26691 pointer in frame.
26692 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext): Likewise.
26693 Correct offset used to restore PIC register.
26694
26695 2017-09-30 John David Anglin <danglin@gcc.gnu.org>
26696
26697 [BZ libc/22165]
26698 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Use PIC
26699 code to load address of __getcontext_ret when generating PIC code.
26700
26701 2017-09-30 H.J. Lu <hongjiu.lu@intel.com>
26702
26703 * elf/Makefile (tests-static-internal): Add
26704 tst-tls1-static-non-pie.
26705 (LDFLAGS-tst-tls1-static-non-pie): New.
26706 * elf/tst-tls1-static-non-pie.c: New file.
26707
26708 2017-09-29 Joseph Myers <joseph@codesourcery.com>
26709
26710 * sysdeps/ieee754/dbl-64/s_asinh.c: Include <libm-alias-double.h>.
26711 (asinh): Define using libm_alias_double.
26712 * sysdeps/ieee754/dbl-64/s_cbrt.c: Include <libm-alias-double.h>.
26713 (cbrt): Define using libm_alias_double.
26714 * sysdeps/ieee754/dbl-64/s_copysign.c: Include
26715 <libm-alias-double.h>.
26716 (copysign): Define using libm_alias_double.
26717 * sysdeps/ieee754/dbl-64/s_erf.c: Include <libm-alias-double.h>.
26718 (erf): Define using libm_alias_double.
26719 (erfc): Likewise.
26720 * sysdeps/ieee754/dbl-64/s_expm1.c: Include <libm-alias-double.h>.
26721 (expm1): Define using libm_alias_double.
26722 * sysdeps/ieee754/dbl-64/s_fabs.c: Include <libm-alias-double.h>.
26723 (fabs): Define using libm_alias_double.
26724 * sysdeps/ieee754/dbl-64/s_fromfp.c (fromfp): Define using
26725 libm_alias_double.
26726 * sysdeps/ieee754/dbl-64/s_fromfp_main.c: Include
26727 <libm-alias-double.h>.
26728 * sysdeps/ieee754/dbl-64/s_fromfpx.c (fromfpx): Define using
26729 libm_alias_double.
26730 * sysdeps/ieee754/dbl-64/s_getpayload.c: Include
26731 <libm-alias-double.h>.
26732 (getpayload): Define using libm_alias_double.
26733 * sysdeps/ieee754/dbl-64/s_llrint.c: Include
26734 <libm-alias-double.h>.
26735 (llrint): Define using libm_alias_double.
26736 * sysdeps/ieee754/dbl-64/s_lrint.c: Include <libm-alias-double.h>.
26737 (lrint): Define using libm_alias_double.
26738 * sysdeps/ieee754/dbl-64/s_nextup.c: Include
26739 <libm-alias-double.h>.
26740 (nextup): Define using libm_alias_double.
26741 * sysdeps/ieee754/dbl-64/s_roundeven.c: Include
26742 <libm-alias-double.h>.
26743 (roundeven): Define using libm_alias_double.
26744 * sysdeps/ieee754/dbl-64/s_setpayload.c (setpayload): Define using
26745 libm_alias_double.
26746 * sysdeps/ieee754/dbl-64/s_setpayload_main.c: Include
26747 <libm-alias-double.h>.
26748 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (setpayloadsig): Define
26749 using libm_alias_double.
26750 * sysdeps/ieee754/dbl-64/s_sin.c: Include <libm-alias-double.h>.
26751 (cos): Define using libm_alias_double.
26752 (sin): Likewise.
26753 * sysdeps/ieee754/dbl-64/s_sincos.c: Include
26754 <libm-alias-double.h>.
26755 (sincos): Define using libm_alias_double.
26756 * sysdeps/ieee754/dbl-64/s_tanh.c: Include <libm-alias-double.h>.
26757 (tanh): Define using libm_alias_double.
26758 * sysdeps/ieee754/dbl-64/s_totalorder.c: Include
26759 <libm-alias-double.h>.
26760 (totalorder): Define using libm_alias_double.
26761 * sysdeps/ieee754/dbl-64/s_totalordermag.c: Include
26762 <libm-alias-double.h>.
26763 (totalordermag): Define using libm_alias_double.
26764 * sysdeps/ieee754/dbl-64/s_ufromfp.c (ufromfp): Define using
26765 libm_alias_double.
26766 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (ufromfpx): Define using
26767 libm_alias_double.
26768 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c: Include
26769 <libm-alias-double.h>.
26770 (getpayload): Define using libm_alias_double.
26771 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c: Include
26772 <libm-alias-double.h>.
26773 (roundeven): Define using libm_alias_double.
26774 * sysdeps/ieee754/dbl-64/wordsize-64/s_setpayload_main.c: Include
26775 <libm-alias-double.h>.
26776 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c: Include
26777 <libm-alias-double.h>.
26778 (totalorder): Define using libm_alias_double.
26779 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c: Include
26780 <libm-alias-double.h>.
26781 (totalordermag): Define using libm_alias_double.
26782 * sysdeps/ieee754/ldbl-opt/s_copysign.c (copysignl): Only define
26783 libc compat symbol here.
26784 * sysdeps/ieee754/ldbl-opt/s_asinh.c: Remove file.
26785 * sysdeps/ieee754/ldbl-opt/s_cbrt.c: Likewise.
26786 * sysdeps/ieee754/ldbl-opt/s_erf.c: Likewise.
26787 * sysdeps/ieee754/ldbl-opt/s_expm1.c: Likewise.
26788 * sysdeps/ieee754/ldbl-opt/s_fabs.c: Likewise.
26789 * sysdeps/ieee754/ldbl-opt/s_llrint.c: Likewise.
26790 * sysdeps/ieee754/ldbl-opt/s_lrint.c: Likewise.
26791 * sysdeps/ieee754/ldbl-opt/s_sin.c: Likewise.
26792 * sysdeps/ieee754/ldbl-opt/s_sincos.c: Likewise.
26793 * sysdeps/ieee754/ldbl-opt/s_tanh.c: Likewise.
26794
26795 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26796
26797 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Use
26798 _dl_relocate_static_pie instead of _dl_start to compute load
26799 address in static PIE. Return 0 if _DYNAMIC is undefined for
26800 static executable.
26801
26802 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26803
26804 * sysdeps/mips/dl-machine.h (elf_machine_dynamic): Return 0 if
26805 _DYNAMIC is undefined for static executable.
26806
26807 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26808
26809 * sysdeps/arm/start.S (_start): Check PIC instead of SHARED.
26810
26811 2017-09-29 Joseph Myers <joseph@codesourcery.com>
26812
26813 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26814
26815 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
26816
26817 * sysdeps/ieee754/dbl-64/e_lgamma_r.c
26818 (__ieee754_lgamma_r): Use fabs rather than __fabs.
26819 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
26820 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
26821 * sysdeps/ieee754/flt-32/e_lgammaf_r.c
26822 (__ieee754_lgammaf_r): Use fabsf rather than __fabsf.
26823 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
26824 * sysdeps/ieee754/flt-32/e_log2f.c (__ieee754_log2f): Likewise.
26825 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c
26826 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
26827 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise.
26828 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Likewise.
26829 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
26830 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
26831 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
26832 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
26833 * sysdeps/powerpc/nofpu/Makefile: Add -fno-builtin-fabsl for BZ #29253.
26834
26835 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
26836
26837 * math/bits/cmathcalls.h (cimag): Remove inline.
26838 (creal): Remove inline.
26839 (conj): Remove inline.
26840
26841 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26842
26843 * math/Makefile (type-float-routines): Add e_powf_log2_data.
26844 * sysdeps/ieee754/flt-32/e_powf.c: New implementation.
26845 * sysdeps/ieee754/flt-32/e_powf_log2_data.c: New file.
26846 * sysdeps/ieee754/flt-32/math_config.h (__powf_log2_data): Define.
26847 (issignalingf_inline): Likewise.
26848 (POWF_LOG2_TABLE_BITS): Likewise.
26849 (POWF_LOG2_POLY_ORDER): Likewise.
26850 (POWF_SCALE_BITS): Likewise.
26851 (POWF_SCALE): Likewise.
26852 * sysdeps/i386/fpu/e_powf_log2_data.c: New file.
26853 * sysdeps/ia64/fpu/e_powf_log2_data.c: New file.
26854 * sysdeps/m68k/m680x0/fpu/e_powf_log2_data.c: New file.
26855
26856 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26857
26858 * math/Makefile (type-float-routines): Add e_log2f_data.
26859 * sysdeps/ieee754/flt-32/e_log2f.c: New implementation.
26860 * sysdeps/ieee754/flt-32/e_log2f_data.c: New file.
26861 * sysdeps/ieee754/flt-32/math_config.h (__log2f_data): Define.
26862 (LOG2F_TABLE_BITS, LOG2F_POLY_ORDER): Define.
26863 * sysdeps/i386/fpu/e_log2f_data.c: New file.
26864 * sysdeps/ia64/fpu/e_log2f_data.c: New file.
26865 * sysdeps/m68k/m680x0/fpu/e_log2f_data.c: New file.
26866
26867 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26868
26869 * math/Makefile (type-float-routines): Add e_logf_data.
26870 * sysdeps/ieee754/flt-32/e_logf.c: New implementation.
26871 * sysdeps/ieee754/flt-32/e_logf_data.c: New file.
26872 * sysdeps/ieee754/flt-32/math_config.h (__logf_data): Define.
26873 (LOGF_TABLE_BITS, LOGF_POLY_ORDER): Define.
26874 * sysdeps/i386/fpu/e_logf_data.c: New file.
26875 * sysdeps/ia64/fpu/e_logf_data.c: New file.
26876 * sysdeps/m68k/m680x0/fpu/e_logf_data.c: New file.
26877
26878 2017-09-28 H.J. Lu <hongjiu.lu@intel.com>
26879
26880 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Allow
26881 undefined _DYNAMIC in PIE libc.a.
26882 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
26883 Likewse.
26884
26885 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
26886
26887 * sysdeps/alpha/fpu/bits/mathinline.h: Delete file.
26888 * sysdeps/ia64/fpu/bits/mathinline.h: Delete file.
26889 * sysdeps/m68k/coldfire/fpu/bits/mathinline.h: Delete file.
26890 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: (__signbitf): Remove.
26891 (__signbit): Remove.
26892 (__signbitl): Remove.
26893 * sysdeps/powerpc/bits/mathinline.h (__signbitf): Remove.
26894 (__signbit): Remove.
26895 (__signbitl): Remove.
26896 * sysdeps/s390/fpu/bits/mathinline.h: (__signbitf): Remove.
26897 (__signbit): Remove.
26898 (__signbitl): Remove.
26899 * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf): Remove.
26900 (__signbit): Remove.
26901 (__signbitl): Remove.
26902 * sysdeps/tile/bits/mathinline.h: Delete file.
26903 * sysdeps/x86/fpu/bits/mathinline.h (__signbitf): Remove.
26904 (__signbit): Remove.
26905 (__signbitl): Remove.
26906
26907 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
26908
26909 * math/math.h: Improve handling of C99 isgreater macros.
26910 * sysdeps/alpha/fpu/bits/mathinline.h: Remove isgreater macros.
26911 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: Likewise.
26912 * sysdeps/powerpc/bits/mathinline.h: Likewise.
26913 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
26914 * sysdeps/x86/fpu/bits/mathinline.h: Likewise.
26915
26916 2017-09-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
26917
26918 * sysdeps/aarch64/libm-test-ulps: Update.
26919
26920 2017-09-28 Joseph Myers <joseph@codesourcery.com>
26921
26922 [BZ #22225]
26923 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
26924 math_opt_barrier on argument when doing arithmetic on it.
26925 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
26926 Likewise. Use math_force_eval not math_opt_barrier after
26927 arithmetic.
26928 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Use
26929 math_opt_barrier on argument when doing arithmetic on it.
26930 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
26931 Likewise.
26932
26933 2017-09-27 H.J. Lu <hongjiu.lu@intel.com>
26934
26935 * sysdeps/unix/sysv/linux/ifaddrs.c (__getifaddrs): Add
26936 libc_hidden_def.
26937 (__freeifaddrs): Likewise.
26938
26939 2017-09-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
26940
26941 * include/dirent.h (__dirfd): New declaration.
26942 * dirent/dirfd.c (dirfd): Rename to __dirfd, and redefine as weak
26943 alias.
26944 * sysdeps/posix/dirfd/dirfd.c (dirfd): Likewise.
26945 * sysdeps/mach/hurd/dirfd.c (dirfd): Likewise.
26946 * io/ftw.c (open_dir_stream, ftw_dir): Use __dirfd instead of dirfd.
26947 * include/unistd.h (__revoke): New declaration.
26948 * misc/revoke.c (revoke): Rename to __revoke, and redefine as weak
26949 alias.
26950 * sysdeps/mach/hurd/revoke.c (revoke): Likewise.
26951 * sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of
26952 revoke.
26953 * include/dirent.h (__seekdir): New declaration.
26954 * sysdeps/mach/hurd/seekdir.c (seekdir): Rename to __seekdir and
26955 redefine as weak alias.
26956 * sysdeps/mach/hurd/rewinddir.c (__rewinddir): Use __seekdir instead
26957 of seekdir.
26958 * include/ifaddrs.h (__getifaddrs, __freeifaddrs): New declarations,
26959 and use libc_hidden_def on them.
26960 * inet/ifaddrs.c (__getifaddrs, __freeifaddrs): Use libc_hidden_def on
26961 them.
26962 * sysdeps/gnu/ifaddrs.c (__getifaddrs, __freeifaddrs): Likewise.
26963 * inet/check_pf.c (__check_pf): Use __getifaddrs and __freeifaddrs
26964 instead of getifaddrs and freeifaddrs.
26965
26966 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
26967
26968 [BZ #18822]
26969 * dlfcn/modatexit.c (foo): Remove __dso_handle check.
26970 * dlfcn/modcxaatexit.c: Include <dso_handle.h>.
26971 (__dso_handle): Remove declaration.
26972 * dlfcn/tstatexit.c (__dso_handle): Removed.
26973 (main): Don't check __dso_handle.
26974 * dlfcn/tstcxaatexit.c (__dso_handle): Removed.
26975 (main): Don't check __dso_handle.
26976 * include/dso_handle.h: New file.
26977 * malloc/mtrace.c: Include <dso_handle.h>.
26978 (mtrace): Pass __dso_handle directly.
26979 * nptl/pthread_atfork.c: Include <dso_handle.h>.
26980 (__dso_handle): Remove declaration.
26981 (__pthread_atfork): Pass __dso_handle directly.
26982 * nptl/tst-atfork2mod.c: Include <dso_handle.h>.
26983 (__dso_handle): Removed.
26984 * posix/wordexp-test.c: Include <dso_handle.h>.
26985 (__dso_handle): Remove declaration.
26986 (__app_register_atfork): Pass __dso_handle directly.
26987 * stdlib/at_quick_exit.c: Include <dso_handle.h>.
26988 (__dso_handle): Remove declaration.
26989 (at_quick_exit): Pass __dso_handle directly.
26990 * stdlib/atexit.c: Include <dso_handle.h>.
26991 (__dso_handle): Remove declaration.
26992 (atexit): Pass __dso_handle directly.
26993 * stdlib/tst-tls-atexit-lib.c: Include <dso_handle.h>.
26994 (__dso_handle): Removed.
26995
26996 2017-09-26 Joseph Myers <joseph@codesourcery.com>
26997
26998 * sysdeps/unix/make-syscalls.sh: Use __ifunc to define symbols
26999 using VDSO.
27000
27001 2017-09-26 Alexey Makhalov <amakhalov@vmware.com>
27002
27003 * elf/dl-tunables.c (do_tunable_update_val): Range checking fix.
27004 * scripts/gen-tunables.awk: Set unspecified minval and/or maxval
27005 values to correct default value for given type.
27006
27007 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
27008
27009 [BZ #22101]
27010 * elf/Makefile (tests): Add tst-debug1.
27011 ($(objpfx)tst-debug1): New.
27012 ($(objpfx)tst-debug1.out): Likewise.
27013 ($(objpfx)tst-debug1mod1.so): Likewise.
27014 * elf/dl-load.c (_dl_map_object_from_fd): Skip PT_DYNAMIC segment
27015 with p_filesz == 0.
27016 * elf/tst-debug1.c: New file.
27017
27018 2017-09-26 Joseph Myers <joseph@codesourcery.com>
27019
27020 * sysdeps/sparc/sparc-ifunc.h [!__ASSEMBLER__] (sparc_libm_ifunc):
27021 Define using __ifunc.
27022
27023 2017-09-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
27024
27025 * sysdeps/powerpc/fpu/libm-test-ulps: Regenerate expf() and
27026 exp2f() values.
27027
27028 2017-09-26 Joseph Myers <joseph@codesourcery.com>
27029
27030 [BZ #22156]
27031 * sysdeps/ia64/stackinfo.h (DEFAULT_STACK_PERMS): Likewise.
27032
27033 2017-09-26 Florian Weimer <fweimer@redhat.com>
27034
27035 * resolv/Makefile (tests-internal): Fix typo in comment.
27036
27037 2017-09-26 Florian Weimer <fweimer@redhat.com>
27038
27039 * resolv/nss_dns/dns-host.c: Fix typo in comment.
27040
27041 2017-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27042
27043 * lib/malloc/scratch_buffer.h (struct scratch_buffer):
27044 Use an union instead of a max_align_t array for __space,
27045 so that __space is the same size on all platforms.
27046 * malloc/scratch_buffer_grow_preserve.c
27047 (__libc_scratch_buffer_grow_preserve): Likewise.
27048
27049 [BZ #22183]
27050 * include/gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): Increase
27051 version to 2.
27052 * posix/Makefile (routines): Add glob-lstat-compat and
27053 glob64-lstat-compat.
27054 * posix/Versions (GLIBC_2.27, glob, glob64): Add symbol version.
27055 * posix/glob-lstat-compat.c: New file.
27056 * posix/glob64-lstat-compat.c: Likewise.
27057 * posix/tst-glob_lstat_compat.c: Likewise.
27058 * sysdeps/unix/sysv/linux/glob-lstat-compat.c: Likewise.
27059 * sysdeps/unix/sysv/linux/alpha/glob-lstat-compat.c: Likewise.
27060 * sysdeps/unix/sysv/linux/glob64-lstat-compat.c: Likewise.
27061 * sysdeps/unix/sysv/linux/s390/s390-32/glob64-lstat-compat.c:
27062 Likewise.
27063 * sysdeps/unix/sysv/linux/alpha/glob.c: Remove file.
27064 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
27065 * posix/glob.c (glob_lstat): New function.
27066 (glob): Rename to __glob and add versioned symbol to 2.27.
27067 (glob_in_dir): Use glob_lstat.
27068 * posix/glob64.c (glob64): Add GLOB_ATTRIBUTE.
27069 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
27070 * sysdeps/unix/sysv/linux/glob.c (glob): Add versioned symbol for
27071 2.27.
27072 * sysdeps/unix/sysv/linux/glob64.c (glob64): Likewise.
27073 * sysdeps/unix/sysv/linux/oldglob.c (GLOB_NO_LSTAT): Define.
27074 * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_glob): Do not use
27075 gl_lstat on glob call.
27076 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add GLIBC_2.27 glob
27077 and glob64 symbols.
27078 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
27079 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
27080 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
27081 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
27082 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
27083 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
27084 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
27085 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
27086 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
27087 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
27088 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
27089 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
27090 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
27091 Likewise.
27092 * sysdeps/unix/linux/powerpc/powerpc32/nofpu/libc.abilist: Likewise.
27093 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
27094 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
27095 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
27096 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
27097 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
27098 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
27099 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: Likewise.
27100 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: Likewise.
27101 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
27102 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
27103 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
27104
27105 2017-09-25 H.J. Lu <hongjiu.lu@intel.com>
27106
27107 * configure.ac (AS): Require binutils 2.25 or later.
27108 * configure: Regenerated.
27109
27110 2017-09-25 Paul Pluzhnikov <ppluzhnikov@google.com>
27111
27112 [BZ #22207]
27113 * stdlib/test-atexit-race-common.c (do_test): Minimize required
27114 VM size.
27115
27116 2017-09-25 DJ Delorie <dj@redhat.com>
27117
27118 [BZ #22161]
27119 * nscd/netgroupcache.c (addinnetgrX): Release read lock after
27120 resetting timeout.
27121
27122 2017-09-25 Stefan Liebler <stli@linux.vnet.ibm.com>
27123
27124 * sysdeps/ieee754/dbl-64/sincos32.h
27125 [SINCCOS32_H]: Remove define.
27126 [SINCOS32_H]: Define.
27127
27128 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
27129
27130 * math/Versions (expf): New libm symbol at GLIBC_2.27.
27131 (exp2f): Likewise.
27132 * math/w_exp2f.c: New file.
27133 * math/w_expf.c: New file.
27134 * math/w_exp2f_compat.c (__exp2f_compat): For compat symbol only.
27135 * math/w_expf_compat.c (__expf_compat): Likewise.
27136 * sysdeps/ia64/fpu/e_exp2f.S: Add versioned symbols.
27137 * sysdeps/ia64/fpu/e_expf.S: Likewise.
27138 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
27139 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
27140 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
27141 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
27142 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
27143 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
27144 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
27145 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
27146 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
27147 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
27148 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
27149 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
27150 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
27151 Likewise.
27152 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
27153 Likewise.
27154 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
27155 Likewise.
27156 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
27157 Likewise.
27158 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
27159 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
27160 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
27161 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
27162 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
27163 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
27164 Likewise.
27165 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
27166 Likewise.
27167 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
27168 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
27169 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
27170
27171 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
27172
27173 * math/Makefile (type-float-routines): Add math_errf and e_exp2f_data.
27174 * sysdeps/aarch64/fpu/math_private.h (TOINT_INTRINSICS): Define.
27175 (roundtoint, converttoint): Likewise.
27176 * sysdeps/ieee754/flt-32/e_expf.c: New implementation.
27177 * sysdeps/ieee754/flt-32/e_exp2f.c: New implementation.
27178 * sysdeps/ieee754/flt-32/e_exp2f_data.c: New file.
27179 * sysdeps/ieee754/flt-32/math_config.h: New file.
27180 * sysdeps/ieee754/flt-32/math_errf.c: New file.
27181 * sysdeps/ieee754/flt-32/t_exp2f.h: Remove.
27182 * sysdeps/i386/fpu/e_exp2f_data.c: New file.
27183 * sysdeps/i386/fpu/math_errf.c: New file.
27184 * sysdeps/ia64/fpu/e_exp2f_data.c: New file.
27185 * sysdeps/ia64/fpu/math_errf.c: New file.
27186 * sysdeps/m68k/m680x0/fpu/e_exp2f_data.c: New file.
27187 * sysdeps/m68k/m680x0/fpu/math_errf.c: New file.
27188
27189 2017-09-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
27190
27191 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): New macro.
27192 (__open, __close, __libc_read, __libc_write, __writev, __libc_lseek64,
27193 __mmap, __fxstat64, __xstat64, __access, __access_noerrno, __getpid,
27194 __getcwd, __sbrk, __strtoul_internal, _exit, abort): Use check_no_hidden
27195 to make sure that these symbols are defined.
27196 * sysdeps/mach/hurd/bits/socket.h: Include <bits/wordsize.h> instead
27197 of <limits.h>
27198 (__need_NULL): Do not define.
27199 (__ss_aligntype): Use __WORDSIZE instead of ULONG_MAX to determine
27200 alignment.
27201 [!__USE_MISC] (pseudo_AF_XTP, pseudo_AF_RTIP, pseudo_AF_PIP,
27202 CMGROUP_MAX, cmsgcred): Do not define.
27203 (CMSG_FIRSTHDR, __cmsg_nxthdr): Use (struct cmsghdr *) 0 instead of
27204 NULL.
27205 * bits/socket.h: Likewise.
27206 * sysdeps/unix/clock_gettime.c (realtime_gettime, __clock_gettime): Use
27207 __gettimeofday instead of gettimeofday.
27208 * sysdeps/unix/clock_settime.c (__clock_settime): Use __settimeofday
27209 instead of settimeofday.
27210
27211 2017-09-22 Joseph Myers <joseph@codesourcery.com>
27212
27213 * sysdeps/ieee754/flt-32/s_asinhf.c: Include <libm-alias-float.h>.
27214 (asinhf): Define using libm_alias_float.
27215 * sysdeps/ieee754/flt-32/s_atanf.c: Include <libm-alias-float.h>.
27216 (atanf): Define using libm_alias_float.
27217 * sysdeps/ieee754/flt-32/s_cbrtf.c: Include <libm-alias-float.h>.
27218 (cbrtf): Define using libm_alias_float.
27219 * sysdeps/ieee754/flt-32/s_ceilf.c: Include <libm-alias-float.h>.
27220 (ceilf): Define using libm_alias_float.
27221 * sysdeps/ieee754/flt-32/s_copysignf.c: Include
27222 <libm-alias-float.h>.
27223 (copysignf): Define using libm_alias_float.
27224 * sysdeps/ieee754/flt-32/s_cosf.c: Include <libm-alias-float.h>.
27225 (cosf): Define using libm_alias_float.
27226 * sysdeps/ieee754/flt-32/s_erff.c: Include <libm-alias-float.h>.
27227 (erff): Define using libm_alias_float.
27228 (erfcf): Likewise.
27229 * sysdeps/ieee754/flt-32/s_expm1f.c: Include <libm-alias-float.h>.
27230 (expm1f): Define using libm_alias_float.
27231 * sysdeps/ieee754/flt-32/s_fabsf.c: Include <libm-alias-float.h>.
27232 (fabsf): Define using libm_alias_float.
27233 * sysdeps/ieee754/flt-32/s_floorf.c: Include <libm-alias-float.h>.
27234 (floorf): Define using libm_alias_float.
27235 * sysdeps/ieee754/flt-32/s_frexpf.c: Include <libm-alias-float.h>.
27236 (frexpf): Define using libm_alias_float.
27237 * sysdeps/ieee754/flt-32/s_fromfpf.c (fromfpf): Define using
27238 libm_alias_float.
27239 * sysdeps/ieee754/flt-32/s_fromfpf_main.c: Include
27240 <libm-alias-float.h>.
27241 * sysdeps/ieee754/flt-32/s_fromfpxf.c (fromfpxf): Define using
27242 libm_alias_float.
27243 * sysdeps/ieee754/flt-32/s_getpayloadf.c: Include
27244 <libm-alias-float.h>.
27245 (getpayloadf): Define using libm_alias_float.
27246 * sysdeps/ieee754/flt-32/s_llrintf.c: Include
27247 <libm-alias-float.h>.
27248 (llrintf): Define using libm_alias_float.
27249 * sysdeps/ieee754/flt-32/s_llroundf.c: Include
27250 <libm-alias-float.h>.
27251 (llroundf): Define using libm_alias_float.
27252 * sysdeps/ieee754/flt-32/s_logbf.c: Include <libm-alias-float.h>.
27253 (logbf): Define using libm_alias_float.
27254 * sysdeps/ieee754/flt-32/s_lrintf.c: Include <libm-alias-float.h>.
27255 (lrintf): Define using libm_alias_float.
27256 * sysdeps/ieee754/flt-32/s_lroundf.c: Include <libm-alias-float.h>.
27257 (lroundf): Define using libm_alias_float.
27258 * sysdeps/ieee754/flt-32/s_modff.c: Include <libm-alias-float.h>.
27259 (modff): Define using libm_alias_float.
27260 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Include
27261 <libm-alias-float.h>.
27262 (nearbyintf): Define using libm_alias_float.
27263 * sysdeps/ieee754/flt-32/s_nextafterf.c: Include
27264 <libm-alias-float.h>.
27265 (nextafterf): Define using libm_alias_float.
27266 * sysdeps/ieee754/flt-32/s_nextupf.c: Include
27267 <libm-alias-float.h>.
27268 (nextupf): Define using libm_alias_float.
27269 * sysdeps/ieee754/flt-32/s_remquof.c: Include
27270 <libm-alias-float.h>.
27271 (remquof): Define using libm_alias_float.
27272 * sysdeps/ieee754/flt-32/s_rintf.c: Include <libm-alias-float.h>.
27273 (rintf): Define using libm_alias_float.
27274 * sysdeps/ieee754/flt-32/s_roundevenf.c: Include
27275 <libm-alias-float.h>.
27276 (roundevenf): Define using libm_alias_float.
27277 * sysdeps/ieee754/flt-32/s_roundf.c: Include <libm-alias-float.h>.
27278 (roundf): Define using libm_alias_float.
27279 * sysdeps/ieee754/flt-32/s_setpayloadf.c (setpayloadf): Define
27280 using libm_alias_float.
27281 * sysdeps/ieee754/flt-32/s_setpayloadf_main.c: Include
27282 <libm-alias-float.h>.
27283 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (setpayloadsigf):
27284 Define using libm_alias_float.
27285 * sysdeps/ieee754/flt-32/s_sincosf.c: Include
27286 <libm-alias-float.h>.
27287 (sincosf): Define using libm_alias_float.
27288 * sysdeps/ieee754/flt-32/s_sinf.c: Include <libm-alias-float.h>.
27289 (sinf): Define using libm_alias_float.
27290 * sysdeps/ieee754/flt-32/s_tanf.c: Include <libm-alias-float.h>.
27291 (tanf): Define using libm_alias_float.
27292 * sysdeps/ieee754/flt-32/s_tanhf.c: Include <libm-alias-float.h>.
27293 (tanhf): Define using libm_alias_float.
27294 * sysdeps/ieee754/flt-32/s_totalorderf.c: Include
27295 <libm-alias-float.h>.
27296 (totalorderf): Define using libm_alias_float.
27297 * sysdeps/ieee754/flt-32/s_totalordermagf.c: Include
27298 <libm-alias-float.h>.
27299 (totalordermagf): Define using libm_alias_float.
27300 * sysdeps/ieee754/flt-32/s_truncf.c: Include <libm-alias-float.h>.
27301 (truncf): Define using libm_alias_float.
27302 * sysdeps/ieee754/flt-32/s_ufromfpf.c (ufromfpf): Define using
27303 libm_alias_float.
27304 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (ufromfpxf): Define using
27305 libm_alias_float.
27306
27307 2017-09-22 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27308
27309 [BZ #22146]
27310 math/math.h: Let fpclassify use the builtin in C++ mode, even
27311 when optimazing for size.
27312
27313 2017-09-22 Joseph Myers <joseph@codesourcery.com>
27314
27315 * csu/Makefile (generated): Do not add version-info.h.
27316 (before-compile): Likewise.
27317 (all-Banner-files): Remove variable.
27318 ($(objpfx)version-info.h): Remove rule.
27319 * csu/version.c (banner): Do not include "version-info.h".
27320 * libidn/Banner: Remove.
27321 * manual/contrib.texi (Simon Josefsson): New entry.
27322
27323 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27324
27325 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
27326 Remove conditionals on LDBL_MANT_DIG.
27327 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
27328 (__ieee754_lgammal_r): Likewise.
27329
27330 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27331
27332 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Remove definitions of
27333 _Float128 and L().
27334 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Remove definitions of
27335 _Float128 and L(). Replace _Float128 with long double and L(x)
27336 with xL, throughout the file.
27337 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
27338 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
27339 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
27340 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
27341
27342 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27343
27344 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Include tables from
27345 sysdeps/ieee754/ldbl-128ibm.
27346 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Copy contents from the
27347 equivalent implementation in sysdeps/ieee754/ldbl-128/ instead
27348 of including it. Keep _Float128 and L() intact. These will be
27349 reviewed by a separate patch.
27350 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
27351 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
27352 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
27353 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
27354
27355 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27356
27357 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c
27358 (__finitef128): Define to __redirect___finitef128.
27359 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
27360 (__isinff128): Define to __redirect___isinff128.
27361 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c
27362 (__isnanf128): Define to __redirect___isnanf128.
27363
27364 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27365
27366 * sysdeps/powerpc/powerpc64le/Makefile
27367 (CFLAGS-tst-strtod-nan-locale.c): New variable.
27368 (CFLAGS-tst-wcstod-nan-locale.c): New variable.
27369
27370 2017-09-21 Paul Pluzhnikov <ppluzhnikov@google.com>
27371 Carlos O'Donell <carlos@redhat.com>
27372
27373 [BZ #22180]
27374 * stdlib/Makefile (tests): Add test-dlclose-exit-race.
27375 * stdlib/test-dlclose-exit-race.c: New file.
27376 * stdlib/test-dlclose-exit-race-helper.c: New file.
27377 * stdlib/exit.c (__run_exit_handlers): Mark slot as free.
27378
27379 2017-09-21 Joseph Myers <joseph@codesourcery.com>
27380
27381 * crypt/Banner: Remove file.
27382 * nptl/Banner: Likewise.
27383 * resolv/Banner: Likewise.
27384 * soft-fp/Banner: Likewise.
27385 * nptl/Makefile ($(objpfx)banner.h): Remove rule.
27386 ($(objpfx)version.d): Remove dependency on banner.h.
27387 ($(objpfx)version.os): Likewise.
27388 * nptl/version.c (banner): Do not include banner.h.
27389 * manual/contrib.texi: Update entries for Richard Henderson, Jakub
27390 Jelinek and BIND code.
27391
27392 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
27393 Carlos O'Donell <carlos@redhat.com>
27394
27395 * support/xdlfcn.h: New file.
27396 * support/xdlfcn.c: New file.
27397 * support/Makefile (libsupport-routines): Add xdlfcn.
27398 * stdlib/tst-tls-atexit.c: Use xdlopen, xdlsym, xdlclose.
27399
27400 2017-09-20 Joseph Myers <joseph@codesourcery.com>
27401
27402 [BZ #20142]
27403 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
27404 Add s_trunc-c, s_truncf-c, s_trunc-sse4_1 and s_truncf-sse4_1.
27405 * sysdeps/x86_64/fpu/multiarch/s_trunc-c.c: New file.
27406 * sysdeps/x86_64/fpu/multiarch/s_trunc-sse4_1.S: Likewise.
27407 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
27408 * sysdeps/x86_64/fpu/multiarch/s_truncf-c.c: Likewise.
27409 * sysdeps/x86_64/fpu/multiarch/s_truncf-sse4_1.S: Likewise.
27410 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
27411
27412 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
27413 Ricky Zhou <rickyz@google.com>
27414 Anoop V Chakkalakkal <anoop.vijayan@in.ibm.com>
27415
27416 [BZ #14333]
27417 * stdlib/cxa_atexit.c (__internal_atexit): Use __exit_funcs_lock.
27418 Remove atomics.
27419 (__new_exitfn): Fail registration when we finished at_exit processing.
27420 * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
27421 * stdlib/on_exit.c (__on_exit): Likewise.
27422 * stdlib/exit.c (__exit_funcs_done): New variable.
27423 (__run_exit_handlers): Use __exit_funcs_lock.
27424 * stdlib/exit.h (__exit_funcs_lock, __exit_funcs_done): New
27425 declarations.
27426 * stdlib/Makefile (test-atexit-race, test-quick_at_exit-race)
27427 (test-cxa_atexit-race, test-on_exit-race): New tests.
27428 * stdlib/test-atexit-race-common.c: New file.
27429 * stdlib/test-atexit-race.c: New file.
27430 * stdlib/test-at_quick_exit-race.c: New file.
27431 * stdlib/test-cxa_atexit-race.c: New file.
27432 * stdlib/test-on_exit-race.c: New file.
27433
27434 2017-09-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
27435
27436 * benchtests/Makefile: Add exp2f and log2f benchmarks.
27437 * benchtests/exp2f-inputs: Copy of expf-inputs.
27438 * benchtests/log2f-inputs: Copy of logf-inputs.
27439
27440 2017-09-19 Joseph Myers <joseph@codesourcery.com>
27441
27442 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]:
27443 Explicitly take address of first element of array arguments in
27444 call to INLINE_SYSCALL.
27445
27446 2017-09-19 Andreas Schwab <schwab@suse.de>
27447
27448 [BZ #22134]
27449 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]: Try
27450 execveat first.
27451 [!__ASSUME_EXECVEAT]: Fall back to /proc if execveat is
27452 unimplemented.
27453 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_EXECVEAT)
27454 [__LINUX_KERNEL_VERSION >= 0x031300]: Define.
27455 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
27456 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040200]: Undef.
27457 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
27458 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
27459 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
27460 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
27461 * posix/Makefile (tests): Add tst-fexecve.
27462 * posix/tst-fexecve.c: New file.
27463
27464 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27465
27466 * benchtests/Makefile: Add logf benchmark.
27467 * benchtests/logf-inputs: Add reduced trace from wrf_r.
27468
27469 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27470
27471 * benchtests/Makefile: Add expf benchmark.
27472 * benchtests/expf-inputs: Add reduced trace from wrf_r.
27473
27474 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27475
27476 * csu/Makefile: Add -funwind-tables to libc-start.c.
27477 * debug/Makefile: Add -funwind-tables to backtrace.c.
27478 * sysdeps/aarch64/Makefile: Remove CFLAGS-backtrace.c.
27479 * sysdeps/arm/Makefile: Likewise.
27480 * sysdeps/i386/Makefile: Likewise.
27481 * sysdeps/m68k/Makefile: Likewise.
27482 * sysdeps/mips/Makefile: Likewise.
27483 * sysdeps/nios2/Makefile: Likewise.
27484 * sysdeps/sh/Makefile: Likewise.
27485 * sysdeps/sparc/Makefile: Likewise.
27486
27487 2017-09-19 Joseph Myers <joseph@codesourcery.com>
27488
27489 * benchtests/Makefile (bench-math): Add trunc and truncf.
27490 (CFLAGS-bench-trunc.c): New variable.
27491 (CFLAGS-bench-truncf.c): Likewise.
27492 * benchtests/trunc-inputs: New file.
27493 * benchtests/truncf-inputs: Likewise.
27494
27495 2017-09-19 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
27496
27497 * sysdeps/powerpc/powerpc64/power8/memset.S: Avoid misaligned stores.
27498
27499 2017-09-18 Joseph Myers <joseph@codesourcery.com>
27500
27501 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT &&
27502 !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)] (weak_alias): Undefine and
27503 redefine.
27504 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
27505 (exp10l): Define as weak alias.
27506 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c [LIBM_SVID_COMPAT
27507 && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (weak_alias): Undefine
27508 and redefine.
27509 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)]
27510 (remainderl): Define as weak alias.
27511
27512 * math/s_fmal.c: Include <libm-alias-ldouble.h>.
27513 (fmal): Define using libm_alias_ldouble.
27514 * math/w_acoshl_compat.c: Include <libm-alias-ldouble.h>.
27515 (acoshl): Define using libm_alias_ldouble.
27516 * math/w_acosl_compat.c: Include <libm-alias-ldouble.h>.
27517 (acosl): Define using libm_alias_ldouble.
27518 * math/w_asinl_compat.c: Include <libm-alias-ldouble.h>.
27519 (asinl): Define using libm_alias_ldouble.
27520 * math/w_atan2l_compat.c: Include <libm-alias-ldouble.h>.
27521 (atan2l): Define using libm_alias_ldouble.
27522 * math/w_atanhl_compat.c: Include <libm-alias-ldouble.h>.
27523 (atanhl): Define using libm_alias_ldouble.
27524 * math/w_coshl_compat.c: Include <libm-alias-ldouble.h>.
27525 (coshl): Define using libm_alias_ldouble.
27526 * math/w_exp10l_compat.c: Include <libm-alias-ldouble.h>.
27527 (exp10l): Define using libm_alias_ldouble.
27528 * math/w_exp2l_compat.c: Include <libm-alias-ldouble.h>.
27529 (exp2l): Define using libm_alias_ldouble.
27530 * math/w_expl_compat.c: Include <libm-alias-ldouble.h>.
27531 (expl): Define using libm_alias_ldouble.
27532 * math/w_fmodl_compat.c: Include <libm-alias-ldouble.h>.
27533 (fmodl): Define using libm_alias_ldouble.
27534 * math/w_hypotl_compat.c: Include <libm-alias-ldouble.h>.
27535 (hypotl): Define using libm_alias_ldouble.
27536 * math/w_j0l_compat.c: Include <libm-alias-ldouble.h>.
27537 (j0l): Define using libm_alias_ldouble.
27538 (y0l): Likewise.
27539 * math/w_j1l_compat.c: Include <libm-alias-ldouble.h>.
27540 (j1l): Define using libm_alias_ldouble.
27541 (y1l): Likewise.
27542 * math/w_jnl_compat.c: Include <libm-alias-ldouble.h>.
27543 (jnl): Define using libm_alias_ldouble.
27544 (ynl): Likewise.
27545 * math/w_log10l_compat.c: Include <libm-alias-ldouble.h>.
27546 (log10l): Define using libm_alias_ldouble.
27547 * math/w_log2l_compat.c: Include <libm-alias-ldouble.h>.
27548 (log2l): Define using libm_alias_ldouble.
27549 * math/w_logl_compat.c: Include <libm-alias-ldouble.h>.
27550 (logl): Define using libm_alias_ldouble.
27551 * math/w_powl_compat.c: Include <libm-alias-ldouble.h>.
27552 (powl): Define using libm_alias_ldouble.
27553 * math/w_remainderl_compat.c: Include <libm-alias-ldouble.h>.
27554 (remainderl): Define using libm_alias_ldouble.
27555 * math/w_sinhl_compat.c: Include <libm-alias-ldouble.h>.
27556 (sinhl): Define using libm_alias_ldouble.
27557 * math/w_sqrtl_compat.c: Include <libm-alias-ldouble.h>.
27558 (sqrtl): Define using libm_alias_ldouble.
27559 * math/w_tgammal_compat.c: Include <libm-alias-ldouble.h>.
27560 (tgammal): Define using libm_alias_ldouble.
27561 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT]
27562 (exp10l): Do not use long_double_symbol here.
27563 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
27564 [LIBM_SVID_COMPAT] (remainderl): Likewise.
27565 * sysdeps/ieee754/ldbl-opt/s_fmal.c: Remove.
27566 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
27567 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
27568 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
27569 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
27570 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
27571 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
27572 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
27573 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
27574 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
27575 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
27576 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
27577 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
27578 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
27579 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
27580 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
27581 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
27582 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
27583 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
27584 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
27585
27586 2017-09-18 Wang Boshi <wangboshi@huawei.com> (tiny change)
27587
27588 * sysdeps/aarch64/start.S: Use MOVL instead of literal pools.
27589 * sysdeps/aarch64/sysdep.h (MOVL): Add MOVL macro.
27590
27591 2017-09-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
27592
27593 * io/read.c (read): Add libc_hidden_weak.
27594 * sysdeps/mach/hurd/read.c (read): Likewise.
27595 * io/write.c (write): Likewise.
27596 * sysdeps/mach/hurd/write.c (write): Likewise.
27597 * io/pread64.c (__pread64): Likewise.
27598 * sysdeps/mach/hurd/pread64.c (__pread64): Likewise.
27599 * posix/pread64.c (__pread64): Add libc_hidden_def.
27600
27601 2017-09-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
27602
27603 * benchtests/scripts/compare_strings.py: New option -g.
27604 (draw_graph): Print a message that a graph is being generated.
27605 (process_results): Generate graph only if -g is passed.
27606 (main): Process option -g.
27607
27608 * benchtests/scripts/compare_strings.py (process_results):
27609 Better spacing for output.
27610
27611 * benchtests/scripts/compare_strings.py: Use argparse.
27612 * benchtests/README: Document existence of compare_strings.py.
27613
27614 2017-09-15 Joseph Myers <joseph@codesourcery.com>
27615
27616 * math/s_fma.c: Include <libm-alias-double.h>.
27617 (fma): Define using libm_alias_double.
27618 * math/s_nextafter.c: Include <libm-alias-double.h>.
27619 (nextafter): Define using libm_alias_double.
27620 * math/w_acos_compat.c: Include <libm-alias-double.h>.
27621 (acos): Define using libm_alias_double.
27622 * math/w_acosh_compat.c: Include <libm-alias-double.h>.
27623 (aocsh): Define using libm_alias_double.
27624 * math/w_asin_compat.c: Include <libm-alias-double.h>.
27625 (asin): Define using libm_alias_double.
27626 * math/w_atan2_compat.c: Include <libm-alias-double.h>.
27627 (atan2): Define using libm_alias_double.
27628 * math/w_atanh_compat.c: Include <libm-alias-double.h>.
27629 (atanh): Define using libm_alias_double.
27630 * math/w_cosh_compat.c: Include <libm-alias-double.h>.
27631 (cosh): Define using libm_alias_double.
27632 * math/w_exp10_compat.c: Include <libm-alias-double.h>.
27633 (exp10): Define using libm_alias_double.
27634 * math/w_exp2_compat.c: Include <libm-alias-double.h>.
27635 (exp2): Define using libm_alias_double.
27636 * math/w_exp_compat.c: Include <libm-alias-double.h>.
27637 (exp): Define using libm_alias_double.
27638 * math/w_fmod_compat.c: Include <libm-alias-double.h>.
27639 (fmod): Define using libm_alias_double.
27640 * math/w_hypot_compat.c: Include <libm-alias-double.h>.
27641 (hypot): Define using libm_alias_double.
27642 * math/w_j0_compat.c: Include <libm-alias-double.h>.
27643 (j0): Define using libm_alias_double.
27644 (y0): Likewise.
27645 * math/w_j1_compat.c: Include <libm-alias-double.h>.
27646 (j1): Define using libm_alias_double.
27647 (y1): Likewise.
27648 * math/w_jn_compat.c: Include <libm-alias-double.h>.
27649 (jn): Define using libm_alias_double.
27650 (yn): Likewise.
27651 * math/w_log10_compat.c: Include <libm-alias-double.h>.
27652 (log10): Define using libm_alias_double.
27653 * math/w_log2_compat.c: Include <libm-alias-double.h>.
27654 (log2): Define using libm_alias_double.
27655 * math/w_log_compat.c: Include <libm-alias-double.h>.
27656 (log): Define using libm_alias_double.
27657 * math/w_pow_compat.c: Include <libm-alias-double.h>.
27658 (pow): Define using libm_alias_double.
27659 * math/w_remainder_compat.c: Include <libm-alias-double.h>.
27660 (remainder): Define using libm_alias_double.
27661 * math/w_sinh_compat.c: Include <libm-alias-double.h>.
27662 (sinh): Define using libm_alias_double.
27663 * math/w_sqrt_compat.c: Include <libm-alias-double.h>.
27664 (sqrt): Define using libm_alias_double.
27665 * math/w_tgamma_compat.c: Include <libm-alias-double.h>.
27666 (tgamma): Define using libm_alias_double.
27667 * sysdeps/ieee754/ldbl-opt/s_nextafter.c [LONG_DOUBLE_COMPAT(libm,
27668 GLIBC_2_0)] (nextafterl): Do not define compat symbol here.
27669 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
27670 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (exp10l): Likewise.
27671 * sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
27672 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)] (remainderl): Likewise.
27673 * sysdeps/ieee754/ldbl-opt/w_acos_compat.c: Remove.
27674 * sysdeps/ieee754/ldbl-opt/w_acosh_compat.c: Likewise.
27675 * sysdeps/ieee754/ldbl-opt/w_asin_compat.c: Likewise.
27676 * sysdeps/ieee754/ldbl-opt/w_atan2_compat.c: Likewise.
27677 * sysdeps/ieee754/ldbl-opt/w_atanh_compat.c: Likewise.
27678 * sysdeps/ieee754/ldbl-opt/w_cosh_compat.c: Likewise.
27679 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Likewise.
27680 * sysdeps/ieee754/ldbl-opt/w_fmod_compat.c: Likewise.
27681 * sysdeps/ieee754/ldbl-opt/w_hypot_compat.c: Likewise.
27682 * sysdeps/ieee754/ldbl-opt/w_j0_compat.c: Likewise.
27683 * sysdeps/ieee754/ldbl-opt/w_j1_compat.c: Likewise.
27684 * sysdeps/ieee754/ldbl-opt/w_jn_compat.c: Likewise.
27685 * sysdeps/ieee754/ldbl-opt/w_log10_compat.c: Likewise.
27686 * sysdeps/ieee754/ldbl-opt/w_log2_compat.c: Likewise.
27687 * sysdeps/ieee754/ldbl-opt/w_log_compat.c: Likewise.
27688 * sysdeps/ieee754/ldbl-opt/w_pow_compat.c: Likewise.
27689 * sysdeps/ieee754/ldbl-opt/w_sinh_compat.c: Likewise.
27690 * sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c: Likewise.
27691 * sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c: Likewise.
27692
27693 * math/e_acoshl.c: Remove.
27694 * math/e_acosl.c: Likewise.
27695 * math/e_asinl.c: Likewise.
27696 * math/e_atan2l.c: Likewise.
27697 * math/e_atanhl.c: Likewise.
27698 * math/e_coshl.c: Likewise.
27699 * math/e_expl.c: Likewise.
27700 * math/e_fmodl.c: Likewise.
27701 * math/e_gammal_r.c: Likewise.
27702 * math/e_hypotl.c: Likewise.
27703 * math/e_j0l.c: Likewise.
27704 * math/e_j1l.c: Likewise.
27705 * math/e_jnl.c: Likewise.
27706 * math/e_lgammal_r.c: Likewise.
27707 * math/e_log10l.c: Likewise.
27708 * math/e_log2l.c: Likewise.
27709 * math/e_logl.c: Likewise.
27710 * math/e_powl.c: Likewise.
27711 * math/e_rem_pio2l.c: Likewise.
27712 * math/e_sinhl.c: Likewise.
27713 * math/e_sqrtf128.c: Likewise.
27714 * math/e_sqrtl.c: Likewise.
27715 * math/k_cosl.c: Likewise.
27716 * math/k_sinl.c: Likewise.
27717 * math/k_tanl.c: Likewise.
27718 * math/s_asinhl.c: Likewise.
27719 * math/s_atanl.c: Likewise.
27720 * math/s_cbrtl.c: Likewise.
27721 * math/s_erfl.c: Likewise.
27722 * math/s_expm1l.c: Likewise.
27723 * math/s_log1pl.c: Likewise.
27724 * math/s_tanhl.c: Likewise.
27725
27726 2017-09-15 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
27727
27728 [BZ #21745]
27729 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile:
27730 [$(subdir) = math] (sysdep_calls): New variable. Has the
27731 previous contents of sysdep_routines, but re-sorted..
27732 [$(subdir) = math] (sysdep_routines): Re-use the contents from
27733 sysdep_calls.
27734 [$(subdir) = math] (libm-sysdep_routines): Remove the functions
27735 defined in sysdep_calls and replace by the respective m_* names.
27736 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S:
27737 (compat_symbol): Undefine to avoid duplicated compat symbols in
27738 libc.
27739
27740 2017-09-15 Joseph Myers <joseph@codesourcery.com>
27741
27742 * math/s_fmaf.c: Include <libm-alias-float.h>.
27743 (fmaf): Define using libm_alias_float.
27744 * math/w_acosf_compat.c: Include <libm-alias-float.h>.
27745 (acosf): Define using libm_alias_float.
27746 * math/w_acoshf_compat.c: Include <libm-alias-float.h>.
27747 (acoshf): Define using libm_alias_float.
27748 * math/w_asinf_compat.c: Include <libm-alias-float.h>.
27749 (asinf): Define using libm_alias_float.
27750 * math/w_atan2f_compat.c: Include <libm-alias-float.h>.
27751 (atan2f): Define using libm_alias_float.
27752 * math/w_atanhf_compat.c: Include <libm-alias-float.h>.
27753 (atanhf): Define using libm_alias_float.
27754 * math/w_coshf_compat.c: Include <libm-alias-float.h>.
27755 (coshf): Define using libm_alias_float.
27756 * math/w_exp10f_compat.c: Include <libm-alias-float.h>.
27757 (exp10f): Define using libm_alias_float.
27758 * math/w_fmodf_compat.c: Include <libm-alias-float.h>.
27759 (fmodf): Define using libm_alias_float.
27760 * math/w_hypotf_compat.c: Include <libm-alias-float.h>.
27761 (hypotf): Define using libm_alias_float.
27762 * math/w_j0f_compat.c: Include <libm-alias-float.h>.
27763 (j0f): Define using libm_alias_float.
27764 (y0f): Likewise.
27765 * math/w_j1f_compat.c: Include <libm-alias-float.h>.
27766 (j1f): Define using libm_alias_float.
27767 (y1f): Likewise.
27768 * math/w_jnf_compat.c: Include <libm-alias-float.h>.
27769 (jnf): Define using libm_alias_float.
27770 (ynf): Likewise.
27771 * math/w_log10f_compat.c: Include <libm-alias-float.h>.
27772 (log10f): Define using libm_alias_float.
27773 * math/w_log2f_compat.c: Include <libm-alias-float.h>.
27774 (log2f): Define using libm_alias_float.
27775 * math/w_logf_compat.c: Include <libm-alias-float.h>.
27776 (logf): Define using libm_alias_float.
27777 * math/w_powf_compat.c: Include <libm-alias-float.h>.
27778 (powf): Define using libm_alias_float.
27779 * math/w_remainderf_compat.c: Include <libm-alias-float.h>.
27780 (remainderf): Define using libm_alias_float.
27781 * math/w_sinhf_compat.c: Include <libm-alias-float.h>.
27782 (sinhf): Define using libm_alias_float.
27783 * math/w_sqrtf_compat.c: Include <libm-alias-float.h>.
27784 (sqrtf): Define using libm_alias_float.
27785 * math/w_tgammaf_compat.c: Include <libm-alias-float.h>.
27786 (tgammaf): Define using libm_alias_float.
27787
27788 2017-09-14 Joseph Myers <joseph@codesourcery.com>
27789
27790 * include/math.h (roundeven): Change hidden_proto call to
27791 __roundeven.
27792 * math/w_j0_compat.c (j0): Rename to __j0 and define as weak
27793 alias.
27794 [NO_LONG_DOUBLE] (__j0l): New strong alias.
27795 (y0): Rename to __y0 and define as weak alias.
27796 [NO_LONG_DOUBLE] (__y0l): New strong alias.
27797 * math/w_j0f_compat.c (j0f): Rename to __j0f and define as weak
27798 alias.
27799 (y0f): Rename to __y0f and define as weak alias.
27800 * math/w_j1_compat.c (j1): Rename to __j1 and define as weak
27801 alias.
27802 [NO_LONG_DOUBLE] (__j1l): New strong alias.
27803 (y1): Rename to __y1 and define as weak alias.
27804 [NO_LONG_DOUBLE] (__y1l): New strong alias.
27805 * math/w_j1f_compat.c (j1f): Rename to __j1f and define as weak
27806 alias.
27807 (y1f): Rename to __y1f and define as weak alias.
27808 * math/w_jn_compat.c (jn): Rename to __jn and define as weak
27809 alias.
27810 [NO_LONG_DOUBLE] (__jnl): New strong alias.
27811 (yn): Rename to __yn and define as weak alias.
27812 [NO_LONG_DOUBLE] (__ynl): New strong alias.
27813 * math/w_jnf_compat.c (jnf): Rename to __jnf and define as weak
27814 alias.
27815 (ynf): Rename to __ynf and define as weak alias.
27816 * sysdeps/ieee754/dbl-64/s_fromfp.c (FUNC): Define to __fromfp.
27817 (fromfp): Define as weak alias.
27818 [NO_LONG_DOUBLE] (__fromfpl): New strong alias.
27819 * sysdeps/ieee754/dbl-64/s_fromfpx.c (FUNC): Define to __fromfpx.
27820 (fromfpx): Define as weak alias.
27821 [NO_LONG_DOUBLE] (__fromfpxl): New strong alias.
27822 * sysdeps/ieee754/dbl-64/s_getpayload.c (getpayload): Rename to
27823 __getpayload and define as weak alias.
27824 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
27825 * sysdeps/ieee754/dbl-64/s_roundeven.c (roundeven): Rename to
27826 __roundeven and define as weak alias.
27827 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
27828 * sysdeps/ieee754/dbl-64/s_setpayload.c (FUNC): Define to
27829 __setpayload.
27830 (setpayload): Define as weak alias.
27831 [NO_LONG_DOUBLE] (__setpayloadl): New strong alias.
27832 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (FUNC): Define to
27833 __setpayloadsig.
27834 (setpayloadsig): Define as weak alias.
27835 [NO_LONG_DOUBLE] (__setpayloadsigl): New strong alias.
27836 * sysdeps/ieee754/dbl-64/s_totalorder.c (totalorder): Rename to
27837 __totalorder and define as weak alias.
27838 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
27839 * sysdeps/ieee754/dbl-64/s_totalordermag.c (totalordermag): Rename
27840 to __totalordermag and define as weak alias.
27841 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
27842 * sysdeps/ieee754/dbl-64/s_ufromfp.c (FUNC): Define to __ufromfp.
27843 (ufromfp): Define as weak alias.
27844 [NO_LONG_DOUBLE] (__ufromfpl): New strong alias.
27845 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (FUNC): Define to
27846 __ufromfpx.
27847 (ufromfpx): Define as weak alias.
27848 [NO_LONG_DOUBLE] (__ufromfpxl): New strong alias.
27849 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c (getpayload):
27850 Rename to __getpayload and define as weak alias.
27851 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
27852 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c (roundeven):
27853 Rename to __roundeven and define as weak alias.
27854 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
27855 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c (totalorder):
27856 Rename to __totalorder and define as weak alias.
27857 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
27858 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c
27859 (totalordermag): Rename to __totalordermag and define as weak
27860 alias.
27861 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
27862 * sysdeps/ieee754/float128/float128_private.h (__getpayloadl): New
27863 macro.
27864 (__roundevenl): Likewise.
27865 (__totalorderl): Likewise.
27866 (__totalordermagl): Likewise
27867 * sysdeps/ieee754/float128/s_fromfpf128.c (FUNC): Define to
27868 __fromfpf128.
27869 (fromfpf128): Define as weak alias.
27870 * sysdeps/ieee754/float128/s_fromfpxf128.c (FUNC): Define to
27871 __fromfpxf128.
27872 (fromfpxf128): Define as weak alias.
27873 * sysdeps/ieee754/float128/s_setpayloadf128.c (FUNC): Define to
27874 __setpayloadf128.
27875 (setpayloadf128): Define as weak alias.
27876 * sysdeps/ieee754/float128/s_setpayloadsigf128.c (FUNC): Define to
27877 __setpayloadsigf128.
27878 (setpayloadsigf128): Define as weak alias.
27879 * sysdeps/ieee754/float128/s_ufromfpf128.c (FUNC): Define to
27880 __ufromfpf128.
27881 (ufromfpf128): Define as weak alias.
27882 * sysdeps/ieee754/float128/s_ufromfpxf128.c (FUNC): Define to
27883 __ufromfpxf128.
27884 (ufromfpxf128): Define as weak alias.
27885 * sysdeps/ieee754/flt-32/s_fromfpf.c (FUNC): Define to __fromfpf.
27886 (fromfpf): Define as weak alias.
27887 * sysdeps/ieee754/flt-32/s_fromfpxf.c (FUNC): Define to
27888 __fromfpxf.
27889 (fromfpxf): Define as weak alias.
27890 * sysdeps/ieee754/flt-32/s_getpayloadf.c (getpayloadf): Rename to
27891 __getpayloadf and define as weak alias.
27892 * sysdeps/ieee754/flt-32/s_roundevenf.c (roundevenf): Rename to
27893 __roundevenf and define as weak alias.
27894 * sysdeps/ieee754/flt-32/s_setpayloadf.c (FUNC): Define to
27895 __setpayloadf.
27896 (setpayloadf): Define as weak alias.
27897 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (FUNC): Define to
27898 __setpayloadsigf.
27899 (setpayloadsigf): Define as weak alias.
27900 * sysdeps/ieee754/flt-32/s_totalorderf.c (totalorderf): Rename to
27901 __totalorderf and define as weak alias.
27902 * sysdeps/ieee754/flt-32/s_totalordermagf.c (totalordermagf):
27903 Rename to __totalordermagf and define as weak alias.
27904 * sysdeps/ieee754/flt-32/s_ufromfpf.c (FUNC): Define to
27905 __ufromfpf.
27906 (ufromfpf): Define as weak alias.
27907 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (FUNC): Define to
27908 __ufromfpxf.
27909 (ufromfpxf): Define as weak alias.
27910 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (FUNC): Define to
27911 __fromfpl.
27912 (fromfpl): Define as weak alias.
27913 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (FUNC): Define to
27914 __fromfpxl.
27915 (fromfpxl): Define as weak alias.
27916 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c (getpayloadl): Rename
27917 to __getpayloadl and define as weak alias.
27918 * sysdeps/ieee754/ldbl-128/s_roundevenl.c (roundevenl): Rename to
27919 __roundevenl and define as weak alias.
27920 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (FUNC): Define to
27921 __setpayloadl.
27922 (setpayloadl): Define as weak alias.
27923 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (FUNC): Define to
27924 __setpayloadsigl.
27925 (setpayloadsigl): Define as weak alias.
27926 * sysdeps/ieee754/ldbl-128/s_totalorderl.c (totalorderl): Rename
27927 to __totalorderl and define as weak alias.
27928 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c (totalordermagl):
27929 Rename to __totalordermagl and define as weak alias.
27930 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (FUNC): Define to
27931 __ufromfpl.
27932 (ufromfpl): Define as weak alias.
27933 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (FUNC): Define to
27934 __ufromfpxl.
27935 (ufromfpxl): Define as weak alias.
27936 * sysdeps/ieee754/ldbl-128ibm/s_fromfpl.c (FUNC): Define to
27937 __fromfpl.
27938 (fromfpl): Define as weak alias.
27939 * sysdeps/ieee754/ldbl-128ibm/s_fromfpxl.c (FUNC): Define to
27940 __fromfpxl.
27941 (fromfpxl): Define as weak alias.
27942 * sysdeps/ieee754/ldbl-128ibm/s_getpayloadl.c (getpayloadl):
27943 Rename to __getpayloadl and define as weak alias.
27944 * sysdeps/ieee754/ldbl-128ibm/s_roundevenl.c (roundevenl): Rename
27945 to __roundevenl and define as weak alias. Call __roundeven
27946 instead of roundeven.
27947 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadl.c (FUNC): Define to
27948 __setpayloadl.
27949 (setpayloadl): Define as weak alias.
27950 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadsigl.c (FUNC): Define to
27951 __setpayloadsigl.
27952 (setpayloadsigl): Define as weak alias.
27953 * sysdeps/ieee754/ldbl-128ibm/s_totalorderl.c (totalorderl):
27954 Rename to __totalorderl and define as weak alias.
27955 * sysdeps/ieee754/ldbl-128ibm/s_totalordermagl.c (totalordermagl):
27956 Rename to __totalordermagl and define as weak alias.
27957 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpl.c (FUNC): Define to
27958 __ufromfpl.
27959 (ufromfpl): Define as weak alias.
27960 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpxl.c (FUNC): Define to
27961 __ufromfpxl.
27962 (ufromfpxl): Define as weak alias.
27963 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (FUNC): Define to
27964 __fromfpl.
27965 (fromfpl): Define as weak alias.
27966 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (FUNC): Define to
27967 __fromfpxl.
27968 (fromfpxl): Define as weak alias.
27969 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c (getpayloadl): Rename to
27970 __getpayloadl and define as weak alias.
27971 * sysdeps/ieee754/ldbl-96/s_roundevenl.c (roundevenl): Rename to
27972 __roundevenl and define as weak alias.
27973 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (FUNC): Define to
27974 __setpayloadl.
27975 (setpayloadl): Define as weak alias.
27976 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c (FUNC): Define to
27977 __setpayloadsigl.
27978 (setpayloadsigl): Define as weak alias.
27979 * sysdeps/ieee754/ldbl-96/s_totalorderl.c (totalorderl): Rename to
27980 __totalorderl and define as weak alias.
27981 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c (totalordermagl):
27982 Rename to __totalordermagl and define as weak alias.
27983 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (FUNC): Define to
27984 __ufromfpl.
27985 (ufromfpl): Define as weak alias.
27986 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (FUNC): Define to
27987 __ufromfpxl.
27988 (ufromfpxl): Define as weak alias.
27989
27990 2017-09-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
27991
27992 * benchtests/bench-string.h (realloc_bufs): New function.
27993 (test_init): Call it.
27994 * benchtests/bench-memset-large.c (do_test): Likewise.
27995 * benchtests/bench-memset.c (do_test): Likewise.
27996
27997 * benchtests/bench-memset-large.c: Print output in JSON
27998 format.
27999 * benchtests/bench-memset.c: Likewise.
28000
28001 2017-09-14 Mike FABIAN <mfabian@redhat.com>
28002
28003 [BZ #21084]
28004 * benchtests/strcoll-inputs/filelist#en_US.UTF-8: Add IBM858 and ibm858.c.
28005 * iconvdata/Makefile: Add IBM858.
28006 * iconvdata/gconv-modules: Likewise.
28007 * iconvdata/tst-tables.sh: Likewise.
28008 * iconvdata/ibm858.c: New file.
28009 * localedata/charmaps/IBM858: Likewise.
28010
28011 2017-09-14 Akhilesh Kumar <akhilesh.k@samsung.com>
28012
28013 [BZ #22023]
28014 * locales/niu_NZ (LC_TIME): copy "niu_NU".
28015 * locales/niu_NZ (LC_MESSAGES): copy "niu_NU".
28016
28017 2017-09-14 Mike FABIAN <mfabian@redhat.com>
28018
28019 [BZ #22112]
28020 * localedata/locales/az_AZ(LC_TELEPHONE): Fix int_select
28021 and add tel_int_fmt.
28022
28023 2017-09-14 Joseph Myers <joseph@codesourcery.com>
28024
28025 * sysdeps/generic/libm-alias-float128.h: New file.
28026 * sysdeps/generic/math-type-macros-float128.h: Include
28027 <libm-alias-float128.h>.
28028 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
28029
28030 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28031
28032 * sysdeps/generic/libm-alias-ldouble.h: New file.
28033 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Likewise.
28034 * sysdeps/ieee754/ldbl-opt/math-type-macros-ldouble.h: Remove.
28035 * sysdeps/generic/math-type-macros-ldouble.h: Include
28036 <libm-alias-ldouble.h>.
28037 [!declare_mgen_alias] (declare_mgen_alias): Define to use
28038 libm_alias_ldouble.
28039
28040 2017-09-13 Szabolcs Nagy <szabolcs.nagy@arm.com>
28041
28042 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Move to...
28043 * math/w_exp_compat.c: ... here.
28044 * sysdeps/ieee754/flt-32/w_expf_compat.c: Move to...
28045 * math/w_expf_compat.c: ... here.
28046 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Move to...
28047 * math/w_expl_compat.c: ... here.
28048 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Remove.
28049 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Remove.
28050 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Use the new path.
28051 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
28052
28053 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28054
28055 * math/w_scalbln_template.c (strong_alias): Do not undefine and
28056 redefine.
28057 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (declare_mgen_alias): Remove
28058 macro.
28059 (ldexpl): Only define as compat symbol for libc, not libm.
28060 (scalbnl): Define as compat symbol for libc here.
28061 * sysdeps/ieee754/ldbl-opt/s_ldexpl.c (declare_mgen_alias): Only
28062 define for [IS_IN (libc)].
28063 (__ldexpl_2): Remove alias.
28064 (ldexpl): Only define with long_double_symbol if [IS_IN (libc)].
28065 (scalbnl): Likewise. Use __wrap_scalbnl not __ldexpl_2 as base
28066 name in long_double_symbol call.
28067 * sysdeps/ieee754/ldbl-opt/s_log1p.c: Remove file.
28068 * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
28069 * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
28070 * sysdeps/ieee754/ldbl-opt/w_log1p.c: Likewise.
28071 * sysdeps/ieee754/ldbl-opt/w_scalbln.c (declare_mgen_alias):
28072 Remove macro.
28073 [IS_IN (libc) && LONG_DOUBLE_COMPAT (libc, GLIBC_2_1)] (scalblnl):
28074 Define as compat symbol.
28075
28076 2017-09-13 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28077
28078 * sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c: New file.
28079 * sysdeps/unix/sysv/linux/alpha/Makefile
28080 [$(subdir) = csu] (sysdep_routines): Remove rule.
28081
28082 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28083
28084 * sysdeps/generic/libm-alias-double.h: New file.
28085 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Likewise.
28086 * sysdeps/generic/math-type-macros-double.h: Include
28087 <libm-alias-double.h>.
28088 [declare_mgen_alias] (declare_mgen_alias): Define to use
28089 libm_alias_double.
28090 * sysdeps/generic/math-type-macros.h [!M_LIBM_NEED_COMPAT]
28091 (M_LIBM_NEED_COMPAT): Remove macro.
28092 [!M_LIBM_NEED_COMPAT] (declare_mgen_libm_compat): Likewise.
28093 * sysdeps/ieee754/ldbl-opt/math-type-macros-double.h: Remove.
28094 * math/cabs_template.c [M_LIBM_NEED_COMPAT]: Remove conditional
28095 code.
28096 * math/carg_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28097 * math/cimag_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28098 * math/conj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28099 * math/creal_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28100 * math/s_cacos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28101 * math/s_cacosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28102 * math/s_casin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28103 * math/s_casinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28104 * math/s_catan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28105 * math/s_catanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28106 * math/s_ccos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28107 * math/s_ccosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28108 * math/s_cexp_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28109 * math/s_clog10_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28110 * math/s_clog_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28111 * math/s_cpow_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28112 * math/s_cproj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28113 * math/s_csin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28114 * math/s_csinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28115 * math/s_csqrt_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28116 * math/s_ctan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28117 * math/s_ctanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28118 * math/s_fdim_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28119 * math/s_fmax_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28120 * math/s_fmin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28121 * math/s_nan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28122 * math/w_ilogb_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28123 * sysdeps/ieee754/ldbl-opt/s_clog10.c: New file.
28124 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (M_LIBM_NEED_COMPAT): Remove
28125 macro.
28126 (declare_mgen_alias): New macro.
28127 * sysdeps/ieee754/ldbl-opt/w_log1p.c: New file.
28128 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Likewise.
28129 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.c
28130 (M_LIBM_NEED_COMPAT): Remove macro.
28131 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c
28132 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h> and
28133 <first-versions.h>.
28134 [HAVE_AS_VIS3_SUPPORT && LONG_DOUBLE_COMPAT (libm,
28135 FIRST_VERSION_libm_fdiml)]: Define fdiml as compat symbol.
28136
28137 2017-09-12 Joseph Myers <joseph@codesourcery.com>
28138
28139 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias_2]
28140 (declare_mgen_alias_2): Remove.
28141 * sysdeps/generic/math-type-macros-double.h
28142 [NO_LONG_DOUBLE && !declare_mgen_alias_2] (declare_mgen_alias_2):
28143 Likewise.
28144 * math/s_ldexp_template.c (M_SUF (__wrap_scalbn)): Define strong
28145 alias.
28146 (ldexp): Define with declare_mgen_alias.
28147 (scalbn): Likewise.
28148
28149 2017-09-12 Steve Ellcey <sellcey@cavium.com>
28150
28151 * grp/initgroups.c: Include config.h.
28152 (DEFAULT_CONFIG): New macro.
28153 (internal_getgrouplist): Use DEFAULT_CONFIG.
28154 * nscd/initgrcache.c (addinitgroupsX): Likewise.
28155 * nss/nsswitch.c (__nss_disable_nscd): Likewise.
28156 (DEFAULT_DEFCONFIG): New macro.
28157 (__nss_database_lookup): Use DEFAULT_DEFCONFIG.
28158 * nss/grp-lookup.c: Include config.h
28159 (DEFAULT_CONFIG): Set definition based on LINK_OBSOLETE_NSL.
28160 * nss/pwd-lookup.c (DEFAULT_CONFIG): Likewise.
28161 * nss/spwd-lookup.c (DEFAULT_CONFIG): Likewise.
28162 * manual/nss.texi: Update default values section.
28163
28164 2017-09-12 H.J. Lu <hongjiu.lu@intel.com>
28165
28166 [BZ #21967]
28167 * sysdeps/x86/cpu-features.h (bit_arch_MathVec_Prefer_No_AVX512):
28168 New.
28169 (index_arch_MathVec_Prefer_No_AVX512): Likewise.
28170 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
28171 Handle MathVec_Prefer_No_AVX512.
28172 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h
28173 (IFUNC_SELECTOR): Return AVX2 version if MathVec_Prefer_No_AVX512
28174 is set.
28175
28176 2017-09-12 Samuel Thibault <samuel.thibault@ens-lyon.org>
28177
28178 * posix/sched_primax.c (__sched_get_priority_max): Add
28179 libc_hidden_def.
28180 * posix/sched_primin.c (__sched_get_priority_min): Likewise.
28181 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
28182 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
28183 * sysdeps/mach/hurd/mprotect.c (__mprotect): Likewise.
28184 * sysdeps/mach/hurd/munmap.c (__munmap): Likewise.
28185 * sysdeps/mach/hurd/dl-sysdep.c (__GI___getpid,
28186 __GI___strtoul_internal, __GI_____strtoul_internal, __GI___chk_fail,
28187 __GI___fortify_fail, __GI___assert_fail, __GI___assert_perror_fail):
28188 Add aliases.
28189
28190 2017-09-11 Joseph Myers <joseph@codesourcery.com>
28191
28192 * sysdeps/generic/libm-alias-float.h: New file.
28193 * sysdeps/generic/math-type-macros-float.h: Include
28194 <libm-alias-float.h>.
28195 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
28196
28197 2017-09-11 H.J. Lu <hongjiu.lu@intel.com>
28198
28199 [BZ #22093]
28200 * sysdeps/x86/cpu-features.c (init_cpu_features): Initialize
28201 GLRO(dl_hwcap) to HWCAP_X86_64 for x86-64.
28202 * sysdeps/x86/dl-hwcap.h (HWCAP_COUNT): Updated.
28203 (HWCAP_IMPORTANT): Likewise.
28204 (HWCAP_X86_64): New enum.
28205 (HWCAP_X86_AVX512_1): Updated.
28206 * sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): Add "x86_64".
28207 * sysdeps/x86_64/Makefile (tests): Add tst-x86_64-1.
28208 (modules-names): Add x86_64/tst-x86_64mod-1.
28209 (LDFLAGS-tst-x86_64mod-1.so): New.
28210 ($(objpfx)tst-x86_64-1): Likewise.
28211 ($(objpfx)x86_64/tst-x86_64mod-1.os): Likewise.
28212 (tst-x86_64-1-clean): Likewise.
28213 * sysdeps/x86_64/tst-x86_64-1.c: New file.
28214 * sysdeps/x86_64/tst-x86_64mod-1.c: Likewise.
28215
28216 2017-09-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
28217
28218 * po/sv.po: Update translations.
28219 * po/fr.po: Likewise.
28220
28221 2017-09-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
28222
28223 * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5
28224 seconds.
28225 * sunrpc/tst-udp-nonblocking.c (do_test): Increase timeout to 0.75
28226 seconds.
28227 * elf/rtld-Rules: Fix $(error) use.
28228
28229 2017-09-09 Mike FABIAN <mfabian@redhat.com>
28230
28231 [BZ #14925]
28232 * libio/tst-widetext.input: Change “Bengali” to “Bangla”.
28233 * locale/iso-639.def: Change “Bengali” to “Bangla”.
28234 * localedata/locales/bn_BD: “Bengali” was still used in some
28235 comments. Change it to “Bangla”.
28236
28237 2017-09-08 Markus Trippelsdorf <markus@trippelsdorf.de>
28238
28239 * sysdeps/x86_64/fpu/libm-test-ulps: Update for AMD Ryzen.
28240
28241 2017-09-08 Steve Ellcey <sellcey@cavium.com>
28242
28243 * manual/tunables.texi (glibc.tune.cpu): Add thunderx2t99 and
28244 thunderx2t99p1 to list of cpu names.
28245 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
28246 Add thunderx2t99 and thunderx2t99p1 entries to cpu_list.
28247
28248 2017-09-08 Steve Ellcey <sellcey@cavium.com>
28249
28250 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
28251 Use strcmp instead of tunable_is_name.
28252
28253 2017-09-08 Joseph Myers <joseph@codesourcery.com>
28254
28255 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
28256 (F_GET_RW_HINT): New macro.
28257 [__USE_GNU] (F_SET_RW_HINT): Likewise.
28258 [__USE_GNU] (F_GET_FILE_RW_HINT): Likewise.
28259 [__USE_GNU] (F_SET_FILE_RW_HINT): Likewise.
28260 [__USE_GNU] (RWF_WRITE_LIFE_NOT_SET): Likewise.
28261 [__USE_GNU] (RWH_WRITE_LIFE_NONE): Likewise.
28262 [__USE_GNU] (RWH_WRITE_LIFE_SHORT): Likewise.
28263 [__USE_GNU] (RWH_WRITE_LIFE_MEDIUM): Likewise.
28264 [__USE_GNU] (RWH_WRITE_LIFE_LONG): Likewise.
28265 [__USE_GNU] (RWH_WRITE_LIFE_EXTREME): Likewise.
28266
28267 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
28268 (F_ADD_SEALS): New macro.
28269 [__USE_GNU] (F_GET_SEALS): Likewise.
28270 [__USE_GNU] (F_SEAL_SEAL): Likewise.
28271 [__USE_GNU] (F_SEAL_SHRINK): Likewise.
28272 [__USE_GNU] (F_SEAL_GROW): Likewise.
28273 [__USE_GNU] (F_SEAL_WRITE): Likewise.
28274
28275 2017-09-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28276
28277 * posix/glob_internal.h (GLOBPAT_NONE, GLOBPAT_SPECIAL)
28278 (GLOBPAT_BACKSLASH, GLOBPAT_BRACKET): New constants.
28279 * posix/glob_internal.h (__glob_pattern_type):
28280 * posix/glob.c (glob):
28281 * posix/glob_pattern_p.c (__glob_pattern_p):
28282 Use them.
28283
28284 * sysdeps/unix/sysv/linux/arm/glob64.c: Remove file.
28285 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
28286 * sysdeps/unix/sysv/linux/m68k/glob64.c: Likewise.
28287 * sysdeps/unix/sysv/linux/mips/mips64/n64/glob64.c: Likewise.
28288 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
28289 * sysdeps/unix/sysv/linux/powerpc/powerpc32/glob64.c: Likewise.
28290 * sysdeps/unix/sysv/linux/sparc/sparc32/glob64.c: Likewise.
28291 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Likewise.
28292 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
28293 * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
28294 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
28295 * sysdeps/wordsize-64/glob.c: Likewise.
28296 * sysdeps/wordsize-64/glob64.c: Likewise.
28297 * sysdeps/wordsize-64/globfree.c: Likewise.
28298 * sysdeps/wordsize-64/globfree64.c: Likewise.
28299 * sysdeps/unix/sysv/linux/glob.c: New file.
28300 * sysdeps/unix/sysv/linux/glob64.c: Likewise.
28301 * sysdeps/unix/sysv/linux/globfree.c: Likewise.
28302 * sysdeps/unix/sysv/linux/globfree64.c: Likewise.
28303 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
28304 * sysdeps/unix/sysv/linux/oldglob.c [SHLIB_COMPAT]: Also
28305 adds !GLOB_NO_OLD_VERSION as an extra condition.
28306 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Include olddirent.h
28307 using relative path instead of absolute one.
28308 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
28309 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
28310 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
28311 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
28312 * sysdeps/unix/sysv/linux/i386/olddirent.h: Move to ...
28313 * sysdeps/unix/sysv/linux//olddirent.h: ... here.
28314
28315 [BZ #1062]
28316 * posix/glob.c (GET_LOGIN_NAME_MAX): Remove.
28317 (glob): Use the same scratch buffer for both getlogin_r and
28318 getpwnam_r. Don’t require preallocation of the login name. This
28319 simplifies storage allocation, and corrects the handling of
28320 long login names.
28321
28322 [BZ #1062]
28323 * posix/glob.c (glob): Port recent patches to platforms
28324 lacking getpwnam_r.
28325 (glob): Fix longstanding misuse of errno after getpwnam_r, which
28326 returns an error number rather than setting errno.
28327
28328 * include/scratch_buffer.h (scratch_buffer): Use a C99 align method
28329 instead of GCC extension.
28330 * malloc/scratch_buffer_grow.c [!_LIBC]: Include libc-config.h.
28331 * malloc/scratch_buffer_grow_preserve.c [!_LIBC]: Likewise.
28332 * malloc/scratch_buffer_set_array_size.c [!_LIBC]: Likewise.
28333
28334 [BZ #866]
28335 [BZ #1062]
28336 * posix/Makefile (tests): Remove bug-glob1 and tst-glob_symlinks.
28337 * posix/bug-glob1.c: Remove file.
28338 * posix/tst-glob_symlinks.c: New file.
28339 * posix/glob.c (__lstat64): New macro.
28340 (is_dir): New function.
28341 (glob, glob_in_dir): Match symlinks even if they are dangling.
28342 (link_stat, link_exists_p): Remove. All uses removed.
28343
28344 [BZ #1062]
28345 [BZ #19971]
28346 * posix/glob.c (struct readdir_result): Remove skip_entry member.
28347 (readdir_result_skip_entry, D_INO_TO_RESULT): Remove.
28348 All uses removed.
28349
28350 [BZ #1062]
28351 CVE-2017-15671
28352 * posix/Makefile (routines): Add globfree, globfree64, and
28353 glob_pattern_p.
28354 * posix/flexmember.h: New file.
28355 * posix/glob_internal.h: Likewise.
28356 * posix/glob_pattern_p.c: Likewise.
28357 * posix/globfree.c: Likewise.
28358 * posix/globfree64.c: Likewise.
28359 * sysdeps/gnu/globfree64.c: Likewise.
28360 * sysdeps/unix/sysv/linux/alpha/globfree.c: Likewise.
28361 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
28362 * sysdeps/unix/sysv/linux/oldglob.c: Likewise.
28363 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
28364 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
28365 * sysdeps/wordsize-64/globfree.c: Likewise.
28366 * sysdeps/wordsize-64/globfree64.c: Likewise.
28367 * posix/glob.c (HAVE_CONFIG_H): Use !_LIBC instead.
28368 [NDEBUG): Remove comments.
28369 (GLOB_ONLY_P, _AMIGA, VMS): Remove define.
28370 (dirent_type): New type. Use uint_fast8_t not
28371 uint8_t, as C99 does not require uint8_t.
28372 (DT_UNKNOWN, DT_DIR, DT_LNK): New macros.
28373 (struct readdir_result): Use dirent_type. Do not define skip_entry
28374 unless it is needed; this saves a byte on platforms lacking d_ino.
28375 (readdir_result_type, readdir_result_skip_entry):
28376 New functions, replacing ...
28377 (readdir_result_might_be_symlink, readdir_result_might_be_dir):
28378 these functions, which were removed. This makes the callers
28379 easier to read. All callers changed.
28380 (D_INO_TO_RESULT): Now empty if there is no d_ino.
28381 (size_add_wrapv, glob_use_alloca): New static functions.
28382 (glob, glob_in_dir): Check for size_t overflow in several places,
28383 and fix some size_t checks that were not quite right.
28384 Remove old code using SHELL since Bash no longer
28385 uses this.
28386 (glob, prefix_array): Separate MS code better.
28387 (glob_in_dir): Remove old Amiga and VMS code.
28388 (globfree, __glob_pattern_type, __glob_pattern_p): Move to
28389 separate files.
28390 (glob_in_dir): Do not rely on undefined behavior in accessing
28391 struct members beyond their bounds. Use a flexible array member
28392 instead
28393 (link_stat): Rename from link_exists2_p and return -1/0 instead of
28394 0/1. Caller changed.
28395 (glob): Fix memory leaks.
28396 * posix/glob64 (globfree64): Move to separate file.
28397 * sysdeps/gnu/glob64.c (NO_GLOB_PATTERN_P): Remove define.
28398 (globfree64): Remove hidden alias.
28399 * sysdeps/unix/sysv/linux/Makefile (sysdeps_routines): Add
28400 oldglob.
28401 * sysdeps/unix/sysv/linux/alpha/glob.c (__new_globfree): Move to
28402 separate file.
28403 * sysdeps/unix/sysv/linux/i386/glob64.c (NO_GLOB_PATTERN_P): Remove
28404 define.
28405 Move compat code to separate file.
28406 * sysdeps/wordsize-64/glob.c (globfree): Move definitions to
28407 separate file.
28408
28409 2017-09-07 H.J. Lu <hongjiu.lu@intel.com>
28410
28411 * resolv/tst-resolv-qtypes.c (domain): Changed to
28412 "const char domain[] =".
28413
28414 2017-09-07 Joseph Myers <joseph@codesourcery.com>
28415
28416 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
28417 version to 3.1.6.
28418
28419 * sysdeps/gnu/netinet/tcp.h (TCP_ULP): New macro.
28420 (TCP_MD5SIG_EXT): Likewise.
28421 (TCP_MD5SIG_FLAG_PREFIX): Likewise.
28422 (struct tcp_md5sig): Replace __tcpm_pad1 by tcpm_flags and
28423 tcpm_prefixlen. Rename __tcpm_pad2 to __tcpm_pad.
28424
28425 * sysdeps/unix/sysv/linux/bits/socket.h (SOL_TLS): New macro.
28426
28427 2017-09-07 Mike FABIAN <mfabian@redhat.com>
28428
28429 * localedata/locales/om_ET (LC_TIME): use ASCII for better readability.
28430
28431 2017-09-07 Akhilesh Kumar <akhilesh.k@samsung.com>
28432
28433 [BZ #22100]
28434 * localedata/locales/om_KE (LC_TIME): copy "om_ET".
28435
28436 2017-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
28437
28438 * hurd/get-host.c (_hurd_get_host_config): Also check that more == 0
28439 before assuming that the file is empty. Avoid testing buffer content
28440 when nread == 0.
28441
28442 2017-09-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28443
28444 [BZ #18858]
28445 * sysdeps/i386/i686/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
28446 Remove define.
28447 * sysdeps/x86_64/multiarch/stpcpy.c (_HAVE_STRING_ARCH_stpcpy):
28448 Likewise.
28449 * sysdeps/x86_64/multiarch/strcspn.c (_HAVE_STRING_ARCH_strcspn):
28450 Likewise.
28451 * sysdeps/x86_64/multiarch/strncat.c (_HAVE_STRING_ARCH_strncat):
28452 Likewise.
28453 * sysdeps/x86_64/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
28454 Likewise.
28455 * sysdeps/x86_64/multiarch/strpbrk.c (_HAVE_STRING_ARCH_strpbrk):
28456 Likewise.
28457 * sysdeps/x86_64/multiarch/strspn.c (_HAVE_STRING_ARCH_strspn):
28458 Likewise.
28459
28460 2017-09-06 Florian Weimer <fweimer@redhat.com>
28461
28462 * malloc/dynarray_emplace_enlarge.c
28463 (__libc_dynarray_emplace_enlarge): Add missing else.
28464
28465 2017-09-06 Florian Weimer <fweimer@redhat.com>
28466
28467 [BZ #22096]
28468 * resolv/resolv_conf.c (__resolv_conf_attach): Do not free conf in
28469 case of failure to obtain the global conf object.
28470
28471 2017-09-06 Florian Weimer <fweimer@redhat.com>
28472
28473 [BZ #22095]
28474 * resolv/res_init.c (res_vinit_1): Avoid memory leak in case of
28475 dynarray allocation failure.
28476
28477 2017-09-06 Florian Weimer <fweimer@redhat.com>
28478
28479 Remove dead PTR IPv4-to-IPv6 mapping code from nss_dns.
28480 * resolv/nss_dns/dns-host.c (getanswer_r): Remove dead code.
28481 * resolv/tst-res_use_inet6.c (response_ptr_v4, response_ptr_v6):
28482 New functions.
28483 (response): Call them. Add 'p', '6' flag processing.
28484 (test_reverse): New function.
28485 (test_get2_any): Call it.
28486 (test_no_inet6): Add 'p' test.
28487 (test_inet6): Likewise.
28488
28489 2017-09-06 Florian Weimer <fweimer@redhat.com>
28490
28491 Enhance tst-res_use_inet6 to test IPv4-to-IPv6 address mapping.
28492 * resolv/tst-res_use_inet6.c (response): Process flags embedded in
28493 the QNAME.
28494 (test_gai): Adjust query names. Add additional tests.
28495 (test_get2_any, test_get2_no_inet6, test_get2_inet6): Split from
28496 test_get2. Adjust query names. Add additional tests.
28497 (test_no_inet6): New function, extracted from threadfunc.
28498 (threadfunc): Call test_get2_any, test_get2_inet6, test_no_inet6.
28499 Add additional tests.
28500
28501 2017-09-06 Mike FABIAN <mfabian@redhat.com>
28502
28503 [BZ #22070]
28504 * localedata/unicode-gen/utf8_gen.py: Set the width for
28505 characters with Prepended_Concatenation_Mark property to 1
28506 * localedata/charmaps/UTF-8: Updated using the improved script.
28507
28508 2017-09-06 Mike FABIAN <mfabian@redhat.com>
28509
28510 [BZ #21750]
28511 * localedata/unicode-gen/utf8_gen.py: Improve the script to
28512 use the range notation for all ranges of neighbouring characters
28513 with the same width.
28514
28515 2017-09-05 Joseph Myers <joseph@codesourcery.com>
28516
28517 * sysdeps/generic/math-type-macros-double.h: Include
28518 <math-svid-compat.h>.
28519 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28520 * sysdeps/generic/math-type-macros-float.h: Include
28521 <math-svid-compat.h>.
28522 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28523 * sysdeps/generic/math-type-macros-ldouble.h: Include
28524 <math-svid-compat.h>.
28525 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28526 * math/lgamma-compat.h (BUILD_LGAMMA): Include LIBM_SVID_COMPAT
28527 condition.
28528 * math/w_acos_compat.c: Condition contents on [LIBM_SVID_COMPAT].
28529 * math/w_acosf_compat.c: Likewise.
28530 * math/w_acosh_compat.c: Likewise.
28531 * math/w_acoshf_compat.c: Likewise.
28532 * math/w_acoshl_compat.c: Likewise.
28533 * math/w_acosl_compat.c: Likewise.
28534 * math/w_asin_compat.c: Likewise.
28535 * math/w_asinf_compat.c: Likewise.
28536 * math/w_asinl_compat.c: Likewise.
28537 * math/w_atan2_compat.c: Likewise.
28538 * math/w_atan2f_compat.c: Likewise.
28539 * math/w_atan2l_compat.c: Likewise.
28540 * math/w_atanh_compat.c: Likewise.
28541 * math/w_atanhf_compat.c: Likewise.
28542 * math/w_atanhl_compat.c: Likewise.
28543 * math/w_cosh_compat.c: Likewise.
28544 * math/w_coshf_compat.c: Likewise.
28545 * math/w_coshl_compat.c: Likewise.
28546 * math/w_exp10_compat.c: Likewise.
28547 * math/w_exp10f_compat.c: Likewise.
28548 * math/w_exp10l_compat.c: Likewise.
28549 * math/w_exp2_compat.c: Likewise.
28550 * math/w_exp2f_compat.c: Likewise.
28551 * math/w_exp2l_compat.c: Likewise.
28552 * math/w_fmod_compat.c: Likewise.
28553 * math/w_fmodf_compat.c: Likewise.
28554 * math/w_fmodl_compat.c: Likewise.
28555 * math/w_hypot_compat.c: Likewise.
28556 * math/w_hypotf_compat.c: Likewise.
28557 * math/w_hypotl_compat.c: Likewise.
28558 * math/w_j0_compat.c: Likewise.
28559 * math/w_j0f_compat.c: Likewise.
28560 * math/w_j0l_compat.c: Likewise.
28561 * math/w_j1_compat.c: Likewise.
28562 * math/w_j1f_compat.c: Likewise.
28563 * math/w_j1l_compat.c: Likewise.
28564 * math/w_jn_compat.c: Likewise.
28565 * math/w_jnf_compat.c: Likewise.
28566 * math/w_jnl_compat.c: Likewise.
28567 * math/w_lgamma_r_compat.c: Likewise.
28568 * math/w_lgammaf_r_compat.c: Likewise.
28569 * math/w_lgammal_r_compat.c: Likewise.
28570 * math/w_log10_compat.c: Likewise.
28571 * math/w_log10f_compat.c: Likewise.
28572 * math/w_log10l_compat.c: Likewise.
28573 * math/w_log2_compat.c: Likewise.
28574 * math/w_log2f_compat.c: Likewise.
28575 * math/w_log2l_compat.c: Likewise.
28576 * math/w_log_compat.c: Likewise.
28577 * math/w_logf_compat.c: Likewise.
28578 * math/w_logl_compat.c: Likewise.
28579 * math/w_pow_compat.c: Likewise.
28580 * math/w_powf_compat.c: Likewise.
28581 * math/w_powl_compat.c: Likewise.
28582 * math/w_remainder_compat.c: Likewise.
28583 * math/w_remainderf_compat.c: Likewise.
28584 * math/w_remainderl_compat.c: Likewise.
28585 * math/w_sinh_compat.c: Likewise.
28586 * math/w_sinhf_compat.c: Likewise.
28587 * math/w_sinhl_compat.c: Likewise.
28588 * math/w_sqrt_compat.c: Likewise.
28589 * math/w_sqrtf_compat.c: Likewise.
28590 * math/w_sqrtl_compat.c: Likewise.
28591 * math/w_tgamma_compat.c: Likewise.
28592 * math/w_tgammaf_compat.c: Likewise.
28593 * math/w_tgammal_compat.c: Likewise.
28594 * math/w_scalb_compat.c (sysv_scalb): Condition definition on
28595 [LIBM_SVID_COMPAT].
28596 (__scalb): Condition call to sysv_scalb on [LIBM_SVID_COMPAT].
28597 * math/w_scalbf_compat.c (sysv_scalbf): Condition definition on
28598 [LIBM_SVID_COMPAT].
28599 (__scalbf): Condition call to sysv_scalbf on [LIBM_SVID_COMPAT].
28600 * math/w_scalbl_compat.c (sysv_scalbl): Condition definition on
28601 [LIBM_SVID_COMPAT].
28602 (__scalbl): Condition call to sysv_scalbl on [LIBM_SVID_COMPAT].
28603 * sysdeps/i386/fpu/w_sqrt.c: New file.
28604 * sysdeps/ia64/fpu/w_acos.c: Likewise.
28605 * sysdeps/ia64/fpu/w_acosf.c: Likewise.
28606 * sysdeps/ia64/fpu/w_acosh.c: Likewise.
28607 * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
28608 * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
28609 * sysdeps/ia64/fpu/w_acosl.c: Likewise.
28610 * sysdeps/ia64/fpu/w_asin.c: Likewise.
28611 * sysdeps/ia64/fpu/w_asinf.c: Likewise.
28612 * sysdeps/ia64/fpu/w_asinl.c: Likewise.
28613 * sysdeps/ia64/fpu/w_atan2.c: Likewise.
28614 * sysdeps/ia64/fpu/w_atan2f.c: Likewise.
28615 * sysdeps/ia64/fpu/w_atan2l.c: Likewise.
28616 * sysdeps/ia64/fpu/w_atanh.c: Likewise.
28617 * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
28618 * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
28619 * sysdeps/ia64/fpu/w_cosh.c: Likewise.
28620 * sysdeps/ia64/fpu/w_coshf.c: Likewise.
28621 * sysdeps/ia64/fpu/w_coshl.c: Likewise.
28622 * sysdeps/ia64/fpu/w_exp.c: Likewise.
28623 * sysdeps/ia64/fpu/w_exp10.c: Likewise.
28624 * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
28625 * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
28626 * sysdeps/ia64/fpu/w_exp2.c: Likewise.
28627 * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
28628 * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
28629 * sysdeps/ia64/fpu/w_expf.c: Likewise.
28630 * sysdeps/ia64/fpu/w_expl.c: Likewise.
28631 * sysdeps/ia64/fpu/w_fmod.c: Likewise.
28632 * sysdeps/ia64/fpu/w_fmodf.c: Likewise.
28633 * sysdeps/ia64/fpu/w_fmodl.c: Likewise.
28634 * sysdeps/ia64/fpu/w_hypot.c: Likewise.
28635 * sysdeps/ia64/fpu/w_hypotf.c: Likewise.
28636 * sysdeps/ia64/fpu/w_hypotl.c: Likewise.
28637 * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
28638 * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
28639 * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
28640 * sysdeps/ia64/fpu/w_log.c: Likewise.
28641 * sysdeps/ia64/fpu/w_log10.c: Likewise.
28642 * sysdeps/ia64/fpu/w_log10f.c: Likewise.
28643 * sysdeps/ia64/fpu/w_log10l.c: Likewise.
28644 * sysdeps/ia64/fpu/w_log2.c: Likewise.
28645 * sysdeps/ia64/fpu/w_log2f.c: Likewise.
28646 * sysdeps/ia64/fpu/w_log2l.c: Likewise.
28647 * sysdeps/ia64/fpu/w_logf.c: Likewise.
28648 * sysdeps/ia64/fpu/w_logl.c: Likewise.
28649 * sysdeps/ia64/fpu/w_pow.c: Likewise.
28650 * sysdeps/ia64/fpu/w_powf.c: Likewise.
28651 * sysdeps/ia64/fpu/w_powl.c: Likewise.
28652 * sysdeps/ia64/fpu/w_remainder.c: Likewise.
28653 * sysdeps/ia64/fpu/w_remainderf.c: Likewise.
28654 * sysdeps/ia64/fpu/w_remainderl.c: Likewise.
28655 * sysdeps/ia64/fpu/w_sinh.c: Likewise.
28656 * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
28657 * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
28658 * sysdeps/ia64/fpu/w_sqrt.c: Likewise.
28659 * sysdeps/ia64/fpu/w_sqrtf.c: Likewise.
28660 * sysdeps/ia64/fpu/w_sqrtl.c: Likewise.
28661 * sysdeps/ia64/fpu/w_tgamma.c: Likewise.
28662 * sysdeps/ia64/fpu/w_tgammaf.c: Likewise.
28663 * sysdeps/ia64/fpu/w_tgammal.c: Likewise.
28664 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Condition contents on
28665 [LIBM_SVID_COMPAT].
28666 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
28667 * sysdeps/ieee754/k_standard.c: Likewise.
28668 * sysdeps/ieee754/k_standardf.c: Likewise.
28669 * sysdeps/ieee754/k_standardl.c: Likewise.
28670 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
28671 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
28672 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
28673 * sysdeps/ieee754/ldbl-64-128/w_expl_compat.c: Condition
28674 long_double_symbol call on [LIBM_SVID_COMPAT].
28675 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
28676 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
28677 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
28678 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
28679 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
28680 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
28681 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
28682 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
28683 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
28684 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
28685 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
28686 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
28687 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
28688 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
28689 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
28690 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
28691 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c: Likewise.
28692 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
28693 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
28694 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
28695 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c: Condition
28696 long_double_symbol and compat_symbol calls on [LIBM_SVID_COMPAT].
28697
28698 2017-09-05 Steve Ellcey <sellcey@cavium.com>
28699
28700 * include/shlib-compat.h (TEST_COMPAT): New Macro.
28701 * malloc/tst-mallocstate.c: Convert from test-skeleton
28702 to test-driver. Ifdef code using TEST_COMPAT macro.
28703 * math/test-matherr-2.c: Ifdef test using TEST_COMPAT macro.
28704 * math/test-matherr.c: Likewise.
28705
28706 2017-09-05 Joseph Myers <joseph@codesourcery.com>
28707
28708 [BZ #22086]
28709 * debug/pcprofiledump.c (main): Use byte-swapped mask when
28710 comparing word with byte-swapped constant.
28711
28712 2017-09-05 Chris Leonard <cjlhomeaddress@gmail.com>
28713
28714 [BZ #20498]
28715 * locale/iso-639.def: add Miskito.
28716 * localedata/SUPPORTED: Add miq_NI/UTF-8.
28717 * localedata/locales/miq_NI: New file.
28718
28719 2017-09-04 H.J. Lu <hongjiu.lu@intel.com>
28720
28721 [BZ #18822]
28722 * include/sys/stat.h (__chmod): Add libc_hidden_proto.
28723 (__mkdir): Likewise.
28724 * io/chmod.c (__chmod): Add libc_hidden_def.
28725 * io/mkdir.c (__mkdir): Likewise.
28726 * sysdeps/mach/hurd/chmod.c (__chmod): Likewise.
28727 * sysdeps/mach/hurd/mkdir.c (__mkdir): Likewise.
28728 * sysdeps/unix/sysv/linux/generic/chmod.c (__chmod): Likewise.
28729 * sysdeps/unix/sysv/linux/generic/mkdir.c (__mkdir): Likewise.
28730
28731 2017-09-04 Joseph Myers <joseph@codesourcery.com>
28732
28733 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
28734 version to 4.13.
28735
28736 [BZ #22082]
28737 * math/bits/math-finite.h (exp10): Redirect if [__GLIBC_USE
28738 (IEC_60559_FUNCS_EXT)], not [__USE_GNU].
28739
28740 2017-09-04 Florian Weimer <fweimer@redhat.com>
28741
28742 * math/math.h: Issue warning if log is defined.
28743
28744 2017-09-04 Joseph Myers <joseph@codesourcery.com>
28745
28746 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
28747 kernel version to 4.13.
28748
28749 2017-09-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
28750
28751 * sysdeps/generic/sigsetops.h: Remove spurious #endif.
28752 (__sigismember, __sigaddset, __sigdelset): Fix referencing set
28753 parameter.
28754 * sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
28755 just <bits/types.h>.
28756 * sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
28757 * sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T.
28758 * sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
28759 * sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T.
28760 * misc/preadv2.c: Include <errno.h>.
28761 * misc/preadv64v2.c: Include <errno.h>.
28762 * misc/pwritev2.c: Include <errno.h>.
28763 * misc/pwritev64v2.c: Include <errno.h>.
28764 * sysdeps/posix/preadv2.c: Include <errno.h>.
28765 * sysdeps/posix/preadv64v2.c: Include <errno.h>.
28766 Fix <unistd.h> inclusion.
28767 * sysdeps/posix/pwritev2.c: Include <errno.h>.
28768 * sysdeps/posix/pwritev64v2.c: Include <errno.h>.
28769 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk,
28770 __strtoul_internal): New functions.
28771 * sysdeps/posix/pause.c: Include <sigsetops.h>.
28772 * sysdeps/posix/system.c: Include <sigsetops.h>.
28773 * sysdeps/mach/hurd/i386/Makefile
28774 [$(subdir) = csu] (sysdep_routines): New rule: divdi3 object.
28775 [$(subdir) = csu] (sysdep-only-routines): Likewise.
28776 [$(subdir) = csu] (CFLAGS-divdi3.c): Likewise.
28777 * sysdeps/x86/fpu/include/bits/fenv.h [NO_HIDDEN]: Redirect
28778 __feraiseexcept_renamed to feraiseexcept instead of
28779 __GI_feraiseexcept.
28780 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/x86.
28781 * sysdeps/mach/hurd/x86/dl-sysdep.c: New file.
28782 * misc/tst-preadvwritev2-common.c (RWF_HIPRI, RWF_DSYNC, RWF_SYNC,
28783 RWF_NOWAIT): Define to 0 if undefined already.
28784 (do_test_with_invalid_flags): Set invalid_flag to 2 if RWF_SUPPORTED
28785 boils down to 0.
28786 * resolv/tst-resolv-res_init-skeleton.c (run_res_init)
28787 [!CLONE_NEWUTS]: Fail as unsupported if hostname is not NULL.
28788
28789 2017-09-01 Joseph Myers <joseph@codesourcery.com>
28790
28791 * manual/math.texi (pow10): Do not document.
28792 (pow10f): Likewise.
28793 (pow10l): Likewise.
28794 * math/bits/mathcalls.h [__USE_GNU] (pow10): Do not declare.
28795 * math/bits/math-finite.h [__USE_GNU] (pow10): Likewise.
28796 * math/libm-test-exp10.inc (pow10_test): Remove.
28797 (do_test): Do not call pow10.
28798 * math/w_exp10_compat.c (pow10): Make into compat symbol.
28799 [NO_LONG_DOUBLE] (pow10l): Likewise.
28800 * math/w_exp10f_compat.c (pow10f): Likewise.
28801 * math/w_exp10l_compat.c (pow10l): Likewise.
28802 * sysdeps/ia64/fpu/e_exp10.S: Include <shlib-compat.h>.
28803 (pow10): Make into compat symbol.
28804 * sysdeps/ia64/fpu/e_exp10f.S: Include <shlib-compat.h>.
28805 (pow10f): Make into compat symbol.
28806 * sysdeps/ia64/fpu/e_exp10l.S: Include <shlib-compat.h>.
28807 (pow10l): Make into compat symbol.
28808 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Remove
28809 pow10.
28810 (CFLAGS-nldbl-pow10.c): Remove variable..
28811 * sysdeps/ieee754/ldbl-opt/nldbl-pow10.c: Remove file.
28812 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c (pow10l): Condition on
28813 [SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27)].
28814 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (compat_symbol):
28815 Undefine and redefine.
28816 (pow10l): Make into compat symbol.
28817 * sysdeps/aarch64/libm-test-ulps: Remove pow10 ulps.
28818 * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
28819 * sysdeps/arm/libm-test-ulps: Likewise.
28820 * sysdeps/hppa/fpu/libm-test-ulps: Likewise.
28821 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
28822 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
28823 * sysdeps/microblaze/libm-test-ulps: Likewise.
28824 * sysdeps/mips/mips32/libm-test-ulps: Likewise.
28825 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
28826 * sysdeps/nios2/libm-test-ulps: Likewise.
28827 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
28828 * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
28829 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
28830 * sysdeps/sh/libm-test-ulps: Likewise.
28831 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
28832 * sysdeps/tile/libm-test-ulps: Likewise.
28833 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28834
28835 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
28836
28837 * stdlib/tst-atexit-common.c (crumbs): Ensure correct size.
28838
28839 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28840
28841 * posix/tst-regex.c (do_test): Replace "../ChangeLog.8" with
28842 "../ChangeLog.old/ChangeLog.8".
28843 * posix/tst-regex2.c (do_test): Replace "../ChangeLog.14" with
28844 "../ChangeLog.old/ChangeLog.14".
28845
28846 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28847
28848 * manual/contrib.texi: Credit Ulrich Drepper for the POSIX
28849 Threads Library.
28850
28851 2017-09-01 Joseph Myers <joseph@codesourcery.com>
28852
28853 * sysdeps/unix/sysv/linux/gentempfd.c: Include <string.h>.
28854
28855 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28856
28857 * csu/version.c (banner): Remove "by Roland McGrath et al.".
28858 * nptl/Banner: Remove "by Ulrich Drepper et al.".
28859
28860 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
28861
28862 * stdlib/tst-atexit-common.c (do_test): Test support for at least
28863 32 atexit handlers.
28864
28865 2017-09-01 Zack Weinberg <zackw@panix.com>
28866
28867 * math/math.h (HUGE_VAL): Improve commentary.
28868
28869 2017-09-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28870 Andreas Schwab <schwab@suse.de>
28871
28872 [BZ #21530]
28873 * include/stdio.h (__gen_tempfd): New function.
28874 * stdio-common/Makefile (routines): Add gentempfd.
28875 * stdio-common/gentempfd.c: New file.
28876 * sysdeps/unix/sysv/linux/gentempfd.c: Likewise.
28877 * stdio-common/tmpfile.c (tmpfile): First try to use a system specific
28878 unnamed file first.
28879
28880 2017-09-01 Florian Weimer <fweimer@redhat.com>
28881
28882 [BZ #21915]
28883 [BZ #21922]
28884 * sysdeps/posix/getaddrinfo.c (gethosts): Look at NSS function
28885 result to determine success or failure, not the errno value.
28886 * nss/Makefile (tests): Add tst-nss-files-hosts-erange.
28887 (tst-nss-files-hosts-erange): Link with -ldl.
28888 * nss/tst-nss-files-hosts-erange.c: New file.
28889 * nss/tst-resolv-basic.c (response): Handle nodata.example.
28890 (do_test): Add NO_DATA tests.
28891 * resolv/tst-resolv-basic.c (test_nodata_nxdomain): New function.
28892 (do_test): Call it.
28893
28894 2017-09-01 Florian Weimer <fweimer@redhat.com>
28895
28896 [BZ #21922]
28897 * sysdeps/posix/getaddrinfo.c (gaih_inet): Report EAI_NODATA error
28898 coming from gethostbyname2_r.
28899
28900 2017-09-01 Florian Weimer <fweimer@redhat.com>
28901
28902 * support/namespace.h (struct support_chroot_configuration): Add
28903 hosts, host_conf.
28904 (struct support_chroot): Add path_hosts, path_host_conf.
28905 * support/support_chroot.c (write_file): New function.
28906 (support_chroot_create): Call it to process /etc/resolv.conf,
28907 /etc/hosts, /etc/host.conf.
28908 (support_chroot_free): Update.
28909
28910 2017-09-01 Florian Weimer <fweimer@redhat.com>
28911
28912 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use h_errno if
28913 status indicates it is set.
28914
28915 2017-09-01 Florian Weimer <fweimer@redhat.com>
28916
28917 [BZ #20532]
28918 * sysdeps/posix/getaddrinfo.c (gaih_inet): Make reporting of NSS
28919 function lookup failures more reliable.
28920
28921 2017-09-01 Florian Weimer <fweimer@redhat.com>
28922
28923 * sysdeps/posix/getaddrinfo.c (gethosts): Use h_errno directly.
28924 (getcanonname): Likewise.
28925 (gaih_inet): Likewise.
28926
28927 2017-09-01 Florian Weimer <fweimer@redhat.com>
28928
28929 * sysdeps/posix/getaddrinfo.c (gethosts): Use errno directly.
28930 (getcanonname): Likewise.
28931 (gaih_inet): Likewise.
28932
28933 2017-08-31 Steve Ellcey <sellcey@cavium.com>
28934 Richard Henderson <rth@twiddle.net>
28935
28936 * sysdeps/aarch64/fpu/s_llrint.c (OREG_SIZE): New macro.
28937 * sysdeps/aarch64/fpu/s_llround.c (OREG_SIZE): Likewise.
28938 * sysdeps/aarch64/fpu/s_llrintf.c (OREGS, IREGS): Remove.
28939 (IREG_SIZE, OREG_SIZE): New macros.
28940 * sysdeps/aarch64/fpu/s_llroundf.c: (OREGS, IREGS): Remove.
28941 (IREG_SIZE, OREG_SIZE): New macros.
28942 * sysdeps/aarch64/fpu/s_lrintf.c (IREGS): Remove.
28943 (IREG_SIZE): New macro.
28944 * sysdeps/aarch64/fpu/s_lroundf.c (IREGS): Remove.
28945 (IREG_SIZE): New macro.
28946 * sysdeps/aarch64/fpu/s_lrint.c (get-rounding-mode.h, stdint.h):
28947 New includes.
28948 (IREG_SIZE, OREG_SIZE): Initialize if not already set.
28949 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
28950 (__CONCATX): Handle exceptions correctly on large values that may
28951 set FE_INVALID.
28952 * sysdeps/aarch64/fpu/s_lround.c (IREG_SIZE, OREG_SIZE):
28953 Initialize if not already set.
28954 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
28955
28956 2017-08-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28957
28958 * sysdeps/generic/not-cancel.h (NO_CANCELLATION): Remove macro.
28959 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (NO_CANCELLATION):
28960 Likewise.
28961 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (NO_CANCELLATION):
28962 Likewise.
28963 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (NO_CANCELLATION):
28964 Likewise.
28965 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (NO_CANCELLATION):
28966 Likewise.
28967 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (NO_CANCELLATION):
28968 Likewise.
28969 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (NO_CANCELLATION):
28970 Likewise.
28971 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (NO_CANCELLATION):
28972 Likewise.
28973 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h
28974 (NO_CANCELLATION): Likewise.
28975 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (NO_CANCELLATION):
28976 Likewise.
28977 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (NO_CANCELLATION):
28978 Likewise.
28979 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h (NO_CANCELLATION):
28980 Likewise.
28981 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h
28982 (NO_CANCELLATION): Likewise.
28983 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h
28984 (NO_CANCELLATION): Likewise.
28985 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (NO_CANCELLATION):
28986 Likewise
28987 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h (NO_CANCELLATION):
28988 Likewise.
28989 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (NO_CANCELLATION):
28990 Likewise.
28991 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (NO_CANCELLATION):
28992 Likewise.
28993 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Add
28994 hidden prototype.
28995 * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Define only
28996 for !IS_IN (rtld) and remove NO_CANCELLATION usage.
28997
28998 2017-08-31 Steve Ellcey <sellcey@cavium.com>
28999
29000 * sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type
29001 in resolver call.
29002
29003 2017-08-31 Florian Weimer <fweimer@redhat.com>
29004
29005 * include/libc-symbols.h (internal_function): Remove.
29006
29007 2017-08-31 Florian Weimer <fweimer@redhat.com>
29008
29009 * stdlib/fmtmsg.c (internal_addseverity): Remove
29010 internal_function.
29011
29012 2017-08-31 Florian Weimer <fweimer@redhat.com>
29013
29014 * stdio-common/printf_fp.c (group_number): Remove
29015 internal_function.
29016 * stdio-common/vfprintf.c (buffered_vfprintf): Likewise.
29017
29018 2017-08-31 Florian Weimer <fweimer@redhat.com>
29019
29020 * posix/fnmatch.c (internal_function): Remove definition.
29021 * posix/fnmatch_loop.c (FCT, EXT, END): Remove internal_function.
29022 * posix/regcomp.c (peek_token, init_word_char)
29023 (duplicate_node_closure, fetch_token, peek_token)
29024 (peek_token_bracket, build_range_exp, build_collating_symbol):
29025 Likewise.
29026 * posix/regex_internal.c (re_string_construct_common)
29027 (create_ci_newstate, create_cd_newstate, re_string_allocate)
29028 (re_string_construct, re_string_realloc_buffers, build_wcs_buffer)
29029 (build_wcs_upper_buffer, re_string_skip_chars, build_upper_buffer)
29030 (re_string_translate_buffer, re_string_reconstruct)
29031 (re_string_peek_byte_case, re_string_fetch_byte_case)
29032 (re_string_destruct, re_string_context_at, re_node_set_alloc)
29033 (re_node_set_init_1, re_node_set_init_2, re_node_set_init_copy)
29034 (re_node_set_add_intersect, re_node_set_init_union)
29035 (re_node_set_merge, re_node_set_insert, re_node_set_insert_last)
29036 (re_node_set_compare, re_node_set_contains, re_node_set_remove_at)
29037 (re_dfa_add_node, calc_state_hash, re_acquire_state)
29038 (re_acquire_state_context): Likewise.
29039 * posix/regex_internal.h (internal_function): Remove definition.
29040 (re_string_realloc_buffers, build_wcs_buffer)
29041 (build_wcs_upper_buffer, build_upper_buffer)
29042 (re_string_translate_buffer, re_string_context_at)
29043 (re_string_char_size_at, re_string_wchar_at)
29044 (re_string_elem_size_at): Likewise.
29045 * posix/regexec.c (match_ctx_init, match_ctx_clean)
29046 (match_ctx_free, match_ctx_add_entry, search_cur_bkref_entry)
29047 (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init)
29048 (re_search_internal, re_search_2_stub, re_search_stub)
29049 (re_copy_regs, prune_impossible_nodes, check_matching)
29050 (check_halt_state_context, update_regs, push_fail_stack, set_regs)
29051 (free_fail_stack_return, sift_states_iter_mb)
29052 (sift_states_backward, build_sifted_states)
29053 (update_cur_sifted_state, add_epsilon_src_nodes, check_dst_limits)
29054 (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos)
29055 (check_subexp_limits, sift_states_bkref, merge_state_array)
29056 (find_recover_state, transit_state, merge_state_with_log)
29057 (check_subexp_matching_top, transit_state_sb, transit_state_sb)
29058 (transit_state_mb, transit_state_bkref, get_subexp)
29059 (get_subexp_sub, find_subexp_node, check_arrival)
29060 (check_arrival_add_next_nodes, check_arrival_expand_ecl)
29061 (check_arrival_expand_ecl_sub, expand_bkref_cache, build_trtable)
29062 (check_node_accept_bytes, find_collation_sequence_value)
29063 (group_nodes_into_DFAstates, check_node_accept, extend_buffers)
29064 (acquire_init_state_context, check_halt_node_context)
29065 (proceed_next_node, pop_fail_stack, clean_state_log_if_needed)
29066 (sub_epsilon_src_nodes): Likewise.
29067 * posix/spawn_int.h (__spawn_valid_fd): Likewise.
29068 * posix/spawn_valid_fd (__spawn_valid_fd): Likewise.
29069 * posix/wordexp.c (parse_dollars, parse_backtick, parse_dquote)
29070 (eval_expr, w_addmem, w_addstr, w_addword, parse_backslash)
29071 (parse_qtd_backslash, parse_tilde, do_parse_glob, parse_glob)
29072 (parse_squote, eval_expr_val, eval_expr_multdiv, parse_arith)
29073 (exec_comm_child, exec_comm, parse_comm, parse_param): Likewise.
29074 * sysdeps/posix/ttyname.c (getttyname): Likewise.
29075 * sysdeps/posix/ttyname_r.c (getttyname_r): Likewise.
29076 * sysdeps/unix/sysv/linux/preadv.c (__atomic_preadv_replacement)
29077 (PREADV): Likewise.
29078 * sysdeps/unix/sysv/linux/preadv64.c (__atomic_preadv64_replacement)
29079 (PREADV): Likewise.
29080 * sysdeps/unix/sysv/linux/pwritev.c (__atomic_pwritev_replacement)
29081 (PWRITEV): Likewise.
29082 * sysdeps/unix/sysv/linux/pwritev64.c (__atomic_pwritev64_replacement)
29083 (PWRITEV): Likewise.
29084 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Likewise.
29085 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
29086
29087 2017-08-31 Florian Weimer <fweimer@redhat.com>
29088
29089 * nptl/allocatestack.c (change_stack_perm, __deallocate_stack)
29090 (setxid_mark_thread, setxid_unmark_thread, setxid_signal_thread):
29091 Remove internal_function.
29092 * nptl/cancellation.c (__pthread_disable_asynccancel): Likewise.
29093 * nptl/libc_pthread_init.c (__libc_pthread_init): Likewise.
29094 * nptl/pthreadP.h (__find_in_stack_list, __free_tcb)
29095 (__deallocate_stack, __libc_pthread_init)
29096 (__pthread_mutex_cond_lock, __pthread_mutex_cond_lock_adjust)
29097 (__pthread_mutex_unlock_usercnt, __pthread_disable_asynccancel)
29098 (__libc_disable_asynccancel, __librt_disable_asynccancel):
29099 Likewise.
29100 * nptl/pthread_create.c (__find_in_stack_list, __free_tcb): Likewise.
29101 * nptl/pthread_mutex_cond_lock.c (__pthread_mutex_lock): Likewise.
29102 * nptl/pthread_mutex_lock.c (__pthread_mutex_cond_lock_adjust):
29103 Likewise.
29104 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full)
29105 (__pthread_mutex_unlock_usercnt): Likewise.
29106
29107 2017-08-31 Florian Weimer <fweimer@redhat.com>
29108
29109 * io/fts.c (fts_alloc, fts_build, fts_lfree, fts_load)
29110 (fts_maxarglen, fts_padjust, fts_palloc, fts_sort, fts_stat)
29111 (fts_safe_changedir): Remove internal_function.
29112 * io/ftw.c (internal_function): Remove definition.
29113 (ftw_dir, process_entry, ftw_startup): Remove internal_function.
29114
29115 2017-08-31 Florian Weimer <fweimer@redhat.com>
29116
29117 * inet/deadline.c (__deadline_current_time)
29118 (__deadline_from_timeval, __deadline_to_ms): Remove
29119 internal_function.
29120 * inet/getnameinfo.c (nrl_domainname): Likewise.
29121 * inet/getnetgrent_r.c (__internal_setnetgrent_reuse): Likewise.
29122 * inet/inet6_option.c (add_pad): Likewise.
29123 * inet/net-internal.h (__deadline_current_time)
29124 (__deadline_from_timeval, __deadline_to_ms): Likewise.
29125 * inet/rcmd.c (__checkhost_sa, __icheckuser): Likewise.
29126 * sysdeps/mach/hurd/if_index.c (__protocol_available): Likewise.
29127 * sysdeps/unix/sysv/linux/ifaddrs.c (map_newlink): Likewise.
29128
29129 2017-08-31 Joseph Myers <joseph@codesourcery.com>
29130
29131 * math/math.h [__USE_ISOC99] (NAN): Define directly here. Do not
29132 include <bits/nan.h>.
29133 * math/Makefile (headers): Remove bits/nan.h.
29134 * bits/nan.h: Remove.
29135 * sysdeps/ieee754/bits/nan.h: Likewise.
29136 * sysdeps/mips/bits/nan.h: Likewise.
29137
29138 * math/math.h [__USE_ISOC99] (INFINITY): Define directly here. Do
29139 not include <bits/inf.h>.
29140 * math/Makefile (headers): Remove bits/inf.h.
29141 * bits/inf.h: Remove.
29142 * sysdeps/ieee754/bits/inf.h: Likewise.
29143
29144 * math/math.h: Do not include bits/huge_val.h, bits/huge_valf.h,
29145 bits/huge_vall.h or bits/huge_val_flt128.h.
29146 (HUGE_VAL): Define directly here.
29147 [__USE_ISOC99] (HUGE_VALF): Likewise.
29148 [__USE_ISOC99] (HUGE_VALL): Likewise.
29149 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
29150 (HUGE_VAL_F128): Likewise.
29151 * math/Makefile (headers): Remove bits/huge_val.h,
29152 bits/huge_valf.h, bits/huge_vall.h and bits/huge_val_flt128.h.
29153 * bits/huge_val.h: Remove.
29154 * bits/huge_val_flt128.h: Likewise.
29155 * bits/huge_valf.h: Likewise.
29156 * bits/huge_vall.h: Likewise.
29157 * sysdeps/ia64/bits/huge_vall.h: Likewise.
29158 * sysdeps/ieee754/bits/huge_val.h: Likewise.
29159 * sysdeps/ieee754/bits/huge_valf.h: Likewise.
29160 * sysdeps/m68k/m680x0/bits/huge_vall.h: Likewise.
29161 * sysdeps/sh/bits/huge_val.h: Likewise.
29162 * sysdeps/sparc/bits/huge_vall.h: Likewise.
29163 * sysdeps/x86/bits/huge_vall.h: Likewise.
29164
29165 2017-08-31 Florian Weimer <fweimer@redhat.com>
29166
29167 * elf/dl-addr-obj.c (_dl_addr_inside_object): Remove
29168 internal_function.
29169 * elf/dl-cache.c (_dl_cache_libcmp, _dl_load_cache_lookup):
29170 Likewise.
29171 * elf/dl-debug.c (_dl_debug_initialize): Likewise.
29172 * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
29173 * elf/dl-environ.c (_dl_next_ld_env_entry): Likewise.
29174 * elf/dl-execstack.c (_dl_make_stack_executable): Likewise.
29175 * elf/dl-fini.c (_dl_sort_fini): Likewise.
29176 * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
29177 * elf/dl-libc.c (dlerror_run): Likewise.
29178 * elf/dl-load.c (add_name_to_object, decompose_rpath)
29179 (_dl_init_paths, _dl_map_object, _dl_rtld_di_serinfo): Likewise.
29180 * elf/dl-lookup.c (add_dependency, _dl_debug_bindings)
29181 (_dl_lookup_symbol_x, _dl_setup_hash, _dl_debug_bindings):
29182 Likewise.
29183 * elf/dl-misc.c (_dl_sysdep_read_whole_file, _dl_name_match_p)
29184 (_dl_higher_prime_number, _dl_strtoul): Likewise.
29185 * elf/dl-object.c (_dl_add_to_namespace_list, _dl_new_object): Likewise.
29186 * elf/dl-profile.c (_dl_start_profile): Likewise.
29187 * elf/dl-reloc.c (_dl_try_allocate_static_tls)
29188 (_dl_allocate_static_tls, _dl_protect_relro, _dl_reloc_bad_type):
29189 Likewise.
29190 * elf/dl-support.c (_dl_aux_init, _dl_non_dynamic_init): Likewise.
29191 * elf/dl-sym.c (_dl_tls_symaddr, do_sym): Likewise.
29192 * elf/dl-sysdep.c (_dl_sysdep_start_cleanup, _dl_show_auxv): Likewise.
29193 * elf/dl-tls.c (_dl_next_tls_modid, _dl_count_modids)
29194 (_dl_determine_tlsoffset, allocate_dtv, _dl_get_tls_static_info)
29195 (_dl_allocate_tls_storage): Likewise.
29196 * elf/dl-version.c (match_symbol, _dl_check_map_versions)
29197 (_dl_check_all_versions): Likewise.
29198 * elf/dynamic-link.h (_dl_try_allocate_static_tls): Likewise.
29199 * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Likewise.
29200 * elf/tst-_dl_addr_inside_object.c (_dl_addr_inside_object): Likewise.
29201 * sysdeps/aarch64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29202 * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Likewise.
29203 * sysdeps/arm/dl-lookupcfg.h (_dl_unmap): Likewise.
29204 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Remove
29205 internal_function from __dl_start.
29206 * sysdeps/arm/dl-tlsdesc.h (_dl_unmap): Remove internal_function.
29207 * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): Likewise.
29208 * sysdeps/generic/ldsodefs.h (_dl_name_match_p)
29209 (_dl_higher_prime_number, _dl_strtoul, _dl_map_object)
29210 (_dl_map_object_deps, _dl_setup_hash, _dl_rtld_di_serinfo)
29211 (_dl_lookup_symbol_x, _dl_add_to_namespace_list, _dl_new_object)
29212 (_dl_protect_relro, _dl_reloc_bad_type, _dl_check_all_versions)
29213 (_dl_check_map_versions, _dl_sort_fini, _dl_debug_initialize)
29214 (_dl_init_paths, _dl_start_profile, _dl_show_auxv)
29215 (_dl_next_ld_env_entry, _dl_important_hwcaps)
29216 (_dl_load_cache_lookup, _dl_sysdep_read_whole_file)
29217 (_dl_sysdep_start_cleanup, _dl_next_tls_modid, _dl_count_modids)
29218 (_dl_determine_tlsoffset, _dl_get_tls_static_info)
29219 (_dl_allocate_static_tls, _dl_allocate_tls_storage)
29220 (_dl_addr_inside_object, _dl_non_dynamic_init, _dl_aux_init):
29221 Likewise.
29222 (struct rtld_global_ro): Remove internal_function from the
29223 _dl_lookup_symbol_x member.
29224 (_dl_symbol_value): Remove. No longer defined anywhere.
29225 * sysdeps/i386/dl-lookupcfg.h (_dl_unmap): Remove
29226 internal_function.
29227 * sysdeps/i386/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29228 * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
29229 * sysdeps/mach/hurd/dl-sysdep.c (_dl_show_auxv): Likewise.
29230 * sysdeps/nios2/dl-init.c (_dl_nios2_get_gp_value): Likewise.
29231 * sysdeps/tile/dl-lookupcfg.h (_dl_unmap): Likewise.
29232 * sysdeps/tile/dl-machine.h (_dl_after_load): Likewise.
29233 * sysdeps/tile/dl-runtime.c (_dl_after_load, _dl_unmap): Likewise.
29234 * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Likewise.
29235 * sysdeps/unix/sysv/linux/dl-vdso.h (_dl_vdso_vsym): Likewise.
29236 * sysdeps/x86_64/dl-lookupcfg.h (_dl_unmap): Likewise.
29237 * sysdeps/x86_64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29238 * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
29239
29240 2017-08-31 Florian Weimer <fweimer@redhat.com>
29241
29242 * gmon/gmon.c (write_hist, write_call_graph, write_bb_counts):
29243 Remove internal_function.
29244 * sysdeps/arm/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
29245 Likewise.
29246 * sysdeps/sparc/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
29247 Likewise.
29248
29249 2017-08-31 Florian Weimer <fweimer@redhat.com>
29250
29251 * dlfcn/dlerror.c (_dlerror_run): Remove internal_function.
29252 * elf/dl-sym.c (_dl_vsym, _dl_sym): Likewise.
29253 * include/dlfcn.h (_dl_sym, _dl_vsym, _dlerror_run): Likewise.
29254
29255 2017-08-31 Florian Weimer <fweimer@redhat.com>
29256
29257 * resolv/gai_misc.c (__gai_find_request, __gai_remove_request)
29258 (__gai_enqueue_request): Remove internal_function.
29259 * resolv/gai_misc.h (__gai_enqueue_request, __gai_find_request)
29260 (__gai_remove_request, __gai_notify, __gai_notify_only)
29261 (__gai_sigqueue): Likewise.
29262 * resolv/gai_notify.c (__gai_notify_only, __gai_notify): Likewise.
29263 * resolv/gai_sigqueue.c (__gai_sigqueue): Likewise.
29264 * resolv/inet_ntop.c (inet_ntop4, inet_ntop6): Likewise.
29265 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
29266 Likewise.
29267
29268 2017-08-31 Florian Weimer <fweimer@redhat.com>
29269
29270 * dirent/scandir-tail.c (SCANDIR_TAIL): Remove internal_function.
29271 * include/dirent.h (__opendirat, __getdents, __getdents64)
29272 (__alloc_dir, __scandir_tail, __scandir64_tail): Likewise.
29273 * sysdeps/posix/opendir.c (__opendirat, __alloc_dir): Likewise.
29274 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
29275 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
29276 Likewise.
29277 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Likewise.
29278
29279 2017-08-31 Florian Weimer <fweimer@redhat.com>
29280
29281 * sysdeps/unix/sysv/linux/getcwd.c (generic_getcwd): Remove
29282 internal_function.
29283 (GETCWD_RETURN_TYPE): Likewise.
29284
29285 2017-08-31 Florian Weimer <fweimer@redhat.com>
29286
29287 * include/time.h (__tz_compute, __strptime_internal): Remove
29288 internal_function.
29289 * time/strptime_l.c (__strptime_internal): Likewise.
29290 * time/tzset.c (compute_change, update_vars, __tz_compute): Likewise.
29291
29292 2017-08-31 Florian Weimer <fweimer@redhat.com>
29293
29294 * iconv/gconv.c (__gconv): Remove internal_function.
29295 * iconv/gconv_builtin.c (__gconv_get_builtin_trans): Likewise.
29296 * iconv/gconv_cache.c (__gconv_load_cache, find_module_idx)
29297 (find_module, __gconv_compare_alias_cache, __gconv_lookup_cache)
29298 (__gconv_release_cache): Likewise.
29299 * iconv/gconv_close.c (__gconv_close): Likewise.
29300 * iconv/gconv_conf.c (detect_conflict, insert_module, add_module)
29301 (read_conf_file, __gconv_get_path): Likewise.
29302 * iconv/gconv_db.c (derivation_lookup, add_derivation)
29303 (__gconv_release_step, gen_steps, increment_counter)
29304 (find_derivation, __gconv_compare_alias, __gconv_find_transform)
29305 (__gconv_close_transform, free_modules_db): Likewise.
29306 * iconv/gconv_dl.c (__gconv_find_shlib, __gconv_release_shlib):
29307 Likewise.
29308 * iconv/gconv_int.h (__gconv_open, __gconv_close, __gconv)
29309 (__gconv_find_transform, __gconv_lookup_cache)
29310 (__gconv_release_step, __gconv_load_cache, __gconv_get_path)
29311 (__gconv_close_transform, __gconv_release_cache)
29312 (__gconv_loaded_object, __gconv_release_shlib)
29313 (__gconv_compare_alias): Likewise.
29314 * iconv/gconv_open.c (__gconv_open): Likewise.
29315 * iconv/iconv_prog.c (print_known_names, add_known_names): Likewise.
29316 * iconv/iconvconfig.c (add_module): Likewise.
29317 * intl/dcigettext.c (plural_lookup, guess_category_value)
29318 (category_to_name, get_output_charset, _nl_find_msg): Likewise.
29319 * intl/eval-plural.h (plural_eval): Likewise.
29320 * intl/finddomain.c (_nl_find_domain): Likewise.
29321 * intl/gettextP.h (_nl_unload_domain, _nl_find_domain)
29322 (_nl_load_domain, _nl_find_msg): Likewise.
29323 (internal_function): Remove definition.
29324 * intl/loadinfo.h (internal_function): Likewise.
29325 * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Remove
29326 internal_function.
29327 * intl/localealias.c (internal_function): Remove definition.
29328 (read_alias_file): Remove internal_function.
29329 * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Likewise.
29330 * intl/plural-exp.h (internal_function): Remove definition.
29331 (FREE_EXPRESSION, EXTRACT_PLURAL_EXPRESSION): Remove
29332 internal_function.
29333 * intl/plural.c: Regenerate.
29334 * intl/plural.y (FREE_EXPRESSION): Remove internal_function.
29335 * locale/coll-lookup.c (__collidx_table_lookup)
29336 (__collseq_table_lookup): Likewise.
29337 * locale/coll-lookup.h (__collidx_table_lookup)
29338 (__collseq_table_lookup): Likewise.
29339 * locale/findlocale.c (_nl_find_locale, _nl_remove_locale): Likewise.
29340 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
29341 * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale)
29342 (_nl_unload_locale): Likewise.
29343 * locale/localeinfo.h (struct __locale_data): Remove
29344 internal_function from cleanup member.
29345 (_nl_find_locale, _nl_load_locale, _nl_unload_locale)
29346 (_nl_remove_locale, _nl_load_locale_from_archive)
29347 (_nl_intern_locale_data, _nl_get_era_entry, _nl_select_era_entry)
29348 (_nl_get_alt_digit, _nl_get_walt_digit, _nl_parse_alt_digit)
29349 (_nl_cleanup_time): Remove internal_function.
29350 * time/alt_digit.c (_nl_get_alt_digit, _nl_get_walt_digit)
29351 (_nl_parse_alt_digit): Likewise.
29352 * time/era.c (_nl_init_era_entries, _nl_get_era_entry)
29353 (_nl_select_era_entry): Likewise.
29354 * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
29355 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv, __wcsmbs_clone_conv)
29356 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
29357 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv, __wcsmbs_clone_conv)
29358 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
29359
29360 2017-08-31 Florian Weimer <fweimer@redhat.com>
29361
29362 * rt/aio_sigqueue.c (__aio_sigqueue): Remove internal_function.
29363 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
29364 * sysdeps/pthread/aio_misc.c (__aio_free_request, __aio_find_req)
29365 (__aio_find_req_fd, __aio_remove_request, __aio_enqueue_request):
29366 Likewise.
29367 * sysdeps/pthread/aio_misc.h (__aio_enqueue_request)
29368 (__aio_find_req, __aio_find_req_fd, __aio_free_request)
29369 (__aio_notify, __aio_notify_only, __aio_sigqueue): Likewise.
29370 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
29371 Likewise.
29372 * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Likewise.
29373
29374 2017-08-31 Florian Weimer <fweimer@redhat.com>
29375
29376 * misc/getttyent.c (skip, value): Remove internal_function.
29377 * misc/syslog.c (openlog_internal): Likewise.
29378 * misc/tsearch.c (trecurse, tdestroy_recurse): Likewise.
29379
29380 2017-08-31 Florian Weimer <fweimer@redhat.com>
29381
29382 * include/nss.h (__nss_valid_field, __nss_valid_list_field)
29383 (__nss_rewrite_field): Remove internal_function.
29384 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
29385 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
29386 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
29387 * nss/nsswitch.c (nss_parse_file, nss_getline)
29388 (nss_parse_service_list, nss_new_service): Likewise.
29389 * nss/rewrite_field.c (__nss_rewrite_field): Likewise.
29390 * nss/valid_field.c (__nss_valid_field): Likewise.
29391 * nss/valid_list_field.c (__nss_valid_list_field): Likewise.
29392
29393 2017-08-31 Florian Weimer <fweimer@redhat.com>
29394
29395 * malloc/arena.c (__malloc_fork_lock_parent)
29396 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child)
29397 (next_env_entry, new_heap, heap_trim, arena_get2): Remove
29398 internal_function from defintions.
29399 * malloc/hooks.c (mem2mem_check, mem2chunk_check): Likewise.
29400 * malloc/malloc-internal.h (__malloc_fork_lock_parent)
29401 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child): Remove
29402 internal_function from declarations.
29403 * malloc/malloc.c (internal_function): Do not define.
29404 (mem2mem_check): Remove internal_function from declaration.
29405 (munmap_chunk, mremap_chunk): Remove internal_function.
29406 * malloc/mtrace.c (tr_where): Likewise.
29407
29408 2017-08-31 Florian Weimer <fweimer@redhat.com>
29409
29410 * include/rpc/pmap_clnt.h (__get_socket): Remove
29411 internal_function.
29412 * sunrpc/auth_des.c (synchronize): Likewise.
29413 * sunrpc/auth_unix.c (marshal_new_auth): Likewise.
29414 * sunrpc/clnt_perr.c (auth_errmsg): Likewise.
29415 * sunrpc/des_impl.c (des_encrypt, des_set_key): Likewise.
29416 * sunrpc/key_call.c (key_call_keyenvoy, key_call_socket)
29417 (key_call): Likewise.
29418 * sunrpc/pm_getport.c (__get_socket): Likewise.
29419 * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
29420 * sunrpc/svc_unix.c (makefd_xprt): Likewise.
29421 * sunrpc/svc_tcp.c (makefd_xprt): Likewise.
29422 * sunrpc/svcauth_des.c (cache_init, cache_spot, cache_ref)
29423 (invalidate): Likewise.
29424 * sunrpc/xcrypt.c (hexval, hex2bin, bin2hex): Likewise.
29425 * sunrpc/xdr_rec.c (fix_buf_size, skip_input_bytes, flush_out)
29426 (set_input_fragment, get_input_bytes): Likewise.
29427
29428 2017-08-31 Florian Weimer <fweimer@redhat.com>
29429
29430 * malloc/malloc.c (_int_free): Remove locked variable and related
29431 asserts.
29432
29433 2017-08-31 H.J. Lu <hongjiu.lu@intel.com>
29434
29435 [BZ #22051]
29436 * Makerules (build-module-helper-objlist): Filter out
29437 $(elf-objpfx)sofini.os.
29438 (build-shlib-objlist): Append $(elf-objpfx)sofini.os if it is
29439 needed.
29440
29441 2017-08-31 Florian Weimer <fweimer@redhat.com>
29442
29443 * libio/fcloseall.c: Assume weak_alias is defined.
29444 * libio/feof.c: Likewise.
29445 * libio/fileno.c: Likewise.
29446 * libio/fileops.c: Assume _LIBC, errno, __set_errno are defined.
29447 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
29448 definitions.
29449 (_IO_file_open): Call __open directly.
29450 (_IO_new_file_sync): Assume ESPIPE is defined.
29451 (_IO_file_seekoff_maybe_mmap): Call __read directly.
29452 (_IO_new_file_write): Call __write directly.
29453 * libio/ftello.c (__ftello): Assume EIO, EOVERFLOW are defined.
29454 * libio/ftello64.c (__ftello64): Assume EIO is defined.
29455 * libio/genops.c: Assume _LIBC is defined.
29456 (save_for_backup): Remove internal_function.
29457 * libio/getc.c: Assume weak_alias is defined.
29458 * libio/getwc.c: Likewise.
29459 * libio/iofclose.c: Assume _LIBC is defined.
29460 * libio/iofdopen.c: Likewise.
29461 (_IO_fcntl): Remove macro definition.
29462 (_IO_new_fdopen): Assume F_GETFL, F_SETFL, O_ACCMODE are defined.
29463 Call __fcntl directly.
29464 * libio/iofflush.c: Assume weak_alias is defined.
29465 * libio/iofgetpos.c (_IO_new_fgetpos): Assume EIO, EOVERFLOW are
29466 defined.
29467 * libio/iofgetpos64.c (_IO_new_fgetpos64): Assume EIO is defined.
29468 * libio/iofgets.c: Likewise.
29469 * libio/iofopen.c: Assume _LIBC is defined.
29470 * libio/iofopen64.c: Assume _LIBC, weak_alias are defined.
29471 * libio/iofputs.c: Assume weak_alias is defined.
29472 * libio/iofread.c: Likewise.
29473 * libio/iofsetpos.c (_IO_new_fsetpos): Assume EIO is defined.
29474 * libio/iofsetpos64.c (_IO_new_fsetpos64): Likewise.
29475 * libio/ioftell.c: Assume weak_alias is defined.
29476 (_IO_ftell): Assume EIO, EOVERFLOW are defined.
29477 * libio/iofwide.c: Assume _LIBC is defined.
29478 (_IO_fwide): Drop SHARED conditional because it is implied by
29479 SHLIB_COMPAT.
29480 * libio/iofwrite.c: Assume weak_alias is defined.
29481 * libio/iogetdelim.c: Likewise.
29482 * libio/iogets.c: Assume _LIBC, weak_alias are defined.
29483 * libio/iogetwline.c (wmemcpy): Remove macro definition.
29484 (_IO_getwline): Call __wmemcpy directly.
29485 * libio/iopopen.c: Assume _LIBC is defined.
29486 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
29487 (_IO_close): Remove macro definitions.
29488 (_IO_new_proc_open): Call __fork, __dup2, __close_nocancel, execl,
29489 _exit directly.
29490 (_IO_new_proc_close): Call __close_nocancel, __waitpid_nocancel
29491 directly.
29492 * libio/ioputs.c: Assume weak_alias is defined.
29493 * libio/ioseekoff.c: Assume errno, __set_errno are defined.
29494 * libio/iosetbuffer.c: Assume weak_alias is defined.
29495 * libio/iosetvbuf.c: Likewise.
29496 * libio/ioungetc.c: Likewise.
29497 * libio/libioP.h: Assume _LIBC, __GLIBC__, libc_hidden_proto,
29498 libc_hidden_def, libc_hidden_weak, NULL are defined.
29499 (mmap, munmap, ftruncate, OS_FSTAT): Remove macro definitions.
29500 * libio/oldfilepos.c: Assume _LIBC, errno, __set_errno are
29501 defined.
29502 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
29503 definitions.
29504 (_IO_old_file_init_internal): Drop SHARED conditional because it
29505 is implied by SHLIB_COMPAT.
29506 (_IO_old_file_fopen): Call __open directly.
29507 (_IO_old_file_sync): Assume ESPIPE is defined.
29508 (_IO_old_file_write): Call __write directly.
29509 * libio/oldfdopen.c (_IO_fcntl): Remove macro definition.
29510 (_IO_old_fdopen): Assume F_GETFL, O_ACCMODE, F_SETFL are defined.
29511 Call __fcntl directly.
29512 * libio/oldiofgetpos.c: Assume weak_alias is defined.
29513 (_IO_old_fgetpos): Assume EIO is defined.
29514 * libio/oldiofgetpos64.c: Assume weak_alias is defined.
29515 (_IO_old_fgetpos64): Assume EIO is defined.
29516 * libio/oldiofsetpos.c: Assume weak_alias is defined.
29517 (_IO_old_fsetpos): Assume EIO is defined.
29518 * libio/oldiofsetpos64.c: Assume weak_alias is defined.
29519 (_IO_old_fsetpos64): Assume EIO is defined.
29520 * libio/oldiopopen.c: Assume _LIBC is defined.
29521 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
29522 (_IO_close): Remove macro definitions.
29523 (_IO_old_proc_open): Call __pipe, __close, __dup2, execl, _exit
29524 directly.
29525 (_IO_old_proc_close): Call __close, __waitpid directly.
29526 * libio/put.c: Assume weak_alias is defined.
29527 * libio/stdfiles.c: Assume _LIBC is defined.
29528 * libio/stdio.c: Likewise.
29529 * libio/wfileops.c: Likewise.
29530 (_IO_wfile_sync): Assume ESPIPE is defined.
29531 * libio/wgenops.c: Assume _LIBC is defined.
29532 (save_for_wbackup): Remove internal_function.
29533
29534 2017-08-31 Florian Weimer <fweimer@redhat.com>
29535
29536 * malloc/malloc.c (top_check): Change return type to void. Remove
29537 internal_function.
29538 * malloc/hooks.c (top_check): Likewise.
29539 (malloc_check, realloc_check, memalign_check): Adjust.
29540
29541 2017-08-30 Joseph Myers <joseph@codesourcery.com>
29542
29543 [BZ #21457]
29544 * sysdeps/arm/sys/ucontext.h: Do not include <bits/sigcontext.h>.
29545 * sysdeps/generic/sys/ucontext.h: Add comment about use of struct
29546 sigcontext and namespace requirements.
29547 * sysdeps/i386/sys/ucontext.h: Do not include <bits/sigcontext.h>.
29548 * sysdeps/m68k/sys/ucontext.h: Likewise.
29549 * sysdeps/mips/sys/ucontext.h: Likewise. Include <bits/types.h>.
29550 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h: Do not include
29551 <bits/sigcontext.h>.
29552 (__ctx): Define earlier.
29553 (mcontext_t): Define structure contents rather than using struct
29554 sigcontext.
29555 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (oEXTENSION): Use
29556 __glibc_reserved1 instead of __reserved.
29557 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h: Do not include
29558 <bits/sigcontext.h>.
29559 (__ctx): Define earlier.
29560 (mcontext_t): Define structure contents rather than using struct
29561 sigcontext.
29562 * sysdeps/unix/sysv/linux/alpha/ucontext-offsets.sym: Use
29563 mcontext_t instead of struct sigcontext.
29564 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Do not include
29565 <bits/sigcontext.h>.
29566 (__ctx): Define earlier.
29567 (mcontext_t): Define structure contents rather than using struct
29568 sigcontext.
29569 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Do not include
29570 <bits/sigcontext.h>.
29571 (__ctx): Define earlier.
29572 (mcontext_t): Define structure contents rather than using struct
29573 sigcontext.
29574 * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Use
29575 mcontext_t instead of struct sigcontext.
29576 * sysdeps/unix/sysv/linux/ia64/sigcontext-offsets.sym: Use
29577 mcontext_t instead of struct sigcontext.
29578 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Do not include
29579 <bits/sigcontext.h>.
29580 (__ctx): New macro.
29581 (struct __ia64_fpreg_mcontext): New type.
29582 (mcontext_t): Define structure contents rather than using struct
29583 sigcontext.
29584 (_SC_GR0_OFFSET): Use mcontext_t instead of struct sigcontext.
29585 (uc_sigmask): Define using __ctx.
29586 (uc_stack): Likewise.
29587 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Include
29588 <bits/sigcontext.h>.
29589 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
29590 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h: Do not include
29591 <bits/sigcontext.h>.
29592 * sysdeps/unix/sysv/linux/microblaze/sys/ucontext.h: New file.
29593 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Do not include
29594 <bits/sigcontext.h>.
29595 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: Do not include
29596 <bits/sigcontext.h>.
29597 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Do not include
29598 <bits/sigcontext.h>.
29599 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Do not include
29600 <bits/sigcontext.h>.
29601 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Do not include
29602 <bits/sigcontext.h>.
29603 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h: Do not include
29604 <bits/sigcontext.h>.
29605 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h: Do not include
29606 <bits/sigcontext.h>.
29607 (__ctx): Define earlier.
29608 (mcontext_t): Define structure contents rather than using struct
29609 sigcontext.
29610 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: Do not include
29611 <bits/sigcontext.h>. Include <bits/types.h>.
29612 * conform/Makefile (test-xfail-XPG42/signal.h/conform): Remove.
29613 (test-xfail-XPG42/sys/wait.h/conform): Likewise.
29614 (test-xfail-XPG42/ucontext.h/conform): Likewise.
29615 (test-xfail-UNIX98/signal.h/conform): Likewise.
29616 (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
29617 (test-xfail-UNIX98/ucontext.h/conform): Likewise.
29618 (test-xfail-XOPEN2K/signal.h/conform): Likewise.
29619 (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
29620 (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
29621 (test-xfail-POSIX2008/signal.h/conform): Likewise.
29622 (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
29623 (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
29624 (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
29625
29626 2017-08-30 Florian Weimer <fweimer@redhat.com>
29627
29628 * malloc/dynarray_emplace_enlarge.c
29629 (__libc_dynarray_emplace_enlarge): Set errno on overflow.
29630 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
29631 * malloc/tst-dynarray.c (test_long_overflow): New function.
29632 (do_test): Call it.
29633
29634 2017-08-30 Florian Weimer <fweimer@redhat.com>
29635
29636 * malloc/malloc.c (ARENA_CORRUPTION_BIT, arena_is_corrupt)
29637 (set_arena_corrupt): Remove definitions.
29638 (mtrim): Do not check for corrupt arena.
29639 * malloc/arena.c (arena_lock, reused_arena, arena_get_retry):
29640 Likewise.
29641
29642 2017-08-30 Florian Weimer <fweimer@redhat.com>
29643
29644 [BZ #21754]
29645 * malloc/arena.c (TUNABLE_CALLBACK set_mallopt_check): Do not set
29646 check_action.
29647 (ptmalloc_init): Do not set or use check_action.
29648 * malloc/hooks.c (malloc_check_get_size, realloc_check): Adjust
29649 call to malloc_printerr. Remove return statement.
29650 (free_check): Likewise. Remove arena unlock.
29651 (top_check): Update comment. Adjust call to malloc_printerr.
29652 Remove heap repair code.
29653 * malloc/malloc.c (unlink): Adjust calls to malloc_printerr.
29654 (DEFAULT_CHECK_ACTION, check_action): Remove definitions.
29655 (sysmalloc): Adjust call to malloc_printerr.
29656 (munmap_chunk, __libc_realloc): Likewise. Remove return
29657 statement.
29658 (_int_malloc, int_realloc): Likewise. Remove errstr variable.
29659 Remove errout label and corresponding gotos.
29660 (_int_free): Likewise. Remove arena unlock.
29661 (do_set_mallopt_check): Do not set check_action.
29662 (malloc_printerr): Adjust parameter list. Do not mark arena as
29663 corrupt.
29664 * manual/memory.texi (Malloc Tunable Parameters): Remove TODO
29665 comment.
29666 * manual/probes.texi (Memory Allocation Probes): Remove
29667 memory_mallopt_check_action.
29668
29669 2017-08-30 Steve Ellcey <sellcey@cavium.com>
29670
29671 * sysdeps/unix/sysv/linux/aarch64/makecontext.c (__makecontext):
29672 Use pointer to uint64_t instead of long int for sp.
29673
29674 2017-08-30 Florian Weimer <fweimer@redhat.com>
29675
29676 [BZ #21754]
29677 * malloc/malloc.c (malloc_printerr): Always terminate the process,
29678 without printing a backtrace. Do not leak any information in the
29679 error message.
29680 * manual/memory.texi (Heap Consistency Checking): Update.
29681 * manual/tunables.texi (Memory Allocation Tunables): Likewise.
29682
29683 2017-08-30 Florian Weimer <fweimer@redhat.com>
29684
29685 Do not scale NPTL tests with available number of CPUs.
29686 * nptl/tst-cond16.c (count): Set to constant value of 8.
29687 * nptl/tst-cond18.c (count): Likewise.
29688
29689 2017-08-29 Joseph Myers <joseph@codesourcery.com>
29690
29691 [BZ #22035]
29692 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__inline_functions):
29693 Define to take a second argument that is a macro that
29694 concatentates a suffix, not the suffix itself.
29695 (__CONCAT_d): New macro.
29696 (__CONCAT_f): Likewise.
29697 (__CONCAT_l): Likewise.
29698
29699 2017-08-29 Paul Pluzhnikov <ppluzhnikov@google.com>
29700
29701 * stdlib/tst-atexit-common.c (do_test): Test handler inheritance
29702 by child.
29703
29704 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29705 Aurelien Jarno <aurelien@aurel32.net>
29706 Maciej W. Rozycki <macro@imgtec.com>
29707
29708 [BZ #21956]
29709 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Makefile
29710 [subdir = misc] (sysdep_routines): Remove `mips16-syscall5',
29711 `mips16-syscall6' and `mips16-syscall7'.
29712 (CFLAGS-mips16-syscall5.c, CFLAGS-mips16-syscall6.c)
29713 (CFLAGS-mips16-syscall7.c): Remove.
29714 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Versions (libc):
29715 Remove `__mips16_syscall5', `__mips16_syscall6' and
29716 `__mips16_syscall7'.
29717 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c
29718 (__mips16_syscall0): Rename `__mips16_syscall_return' to
29719 `__mips_syscall_return'.
29720 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c
29721 (__mips16_syscall1): Likewise.
29722 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c
29723 (__mips16_syscall2): Likewise.
29724 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c
29725 (__mips16_syscall3): Likewise.
29726 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c
29727 (__mips16_syscall4): Likewise.
29728 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c:
29729 Remove.
29730 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c:
29731 Remove.
29732 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c:
29733 Remove.
29734 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h
29735 (__mips16_syscall5): Expand to `__mips_syscall5' rather than
29736 `__mips16_syscall5'. Remove prototype.
29737 (__mips16_syscall6): Expand to `__mips_syscall6' rather than
29738 `__mips16_syscall6'. Remove prototype.
29739 (__mips16_syscall7): Expand to `__mips_syscall7' rather than
29740 `__mips16_syscall7'. Remove prototype.
29741 (__nomips16, __mips16_syscall_return): Move to...
29742 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
29743 (__nomips16, __mips_syscall_return): ... here.
29744 [__mips16] (INTERNAL_SYSCALL_NCS): Rename
29745 `__mips16_syscall_return' to `__mips_syscall_return'.
29746 [__mips16] (INTERNAL_SYSCALL_MIPS16): Pass `number' to
29747 `internal_syscall##nr'.
29748 [!__mips16] (INTERNAL_SYSCALL): Pass `SYS_ify (name)' to
29749 `internal_syscall##nr'.
29750 (FORCE_FRAME_POINTER): Remove.
29751 (__mips_syscall5): New prototype.
29752 (internal_syscall5): Rewrite to call `__mips_syscall5'.
29753 (__mips_syscall6): New prototype.
29754 (internal_syscall6): Rewrite to call `__mips_syscall6'.
29755 (__mips_syscall7): New prototype.
29756 (internal_syscall7): Rewrite to call `__mips_syscall7'.
29757 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall5.S: New file.
29758 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall6.S: New file.
29759 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall7.S: New file.
29760 * sysdeps/unix/sysv/linux/mips/mips32/Makefile [subdir = misc]
29761 (sysdep_routines): Add libc-do-syscall.
29762 * sysdeps/unix/sysv/linux/mips/mips32/Versions (libc): Add
29763 `__mips_syscall5', `__mips_syscall6' and `__mips_syscall7'.
29764
29765 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29766
29767 [BZ #21672]
29768 * nptl/allocatestack.c [_STACK_GROWS_DOWN] (setup_stack_prot):
29769 Set to use !NEED_SEPARATE_REGISTER_STACK as well.
29770 (advise_stack_range): New function.
29771 * nptl/pthread_create.c (START_THREAD_DEFN): Move logic to mark
29772 stack non required to advise_stack_range at allocatestack.c
29773
29774 2017-08-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
29775
29776 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Use __uint64_t.
29777
29778 2017-08-29 Florian Weimer <fweimer@redhat.com>
29779
29780 [BZ #22026]
29781 * iconv/gconv_db.c (gen_steps): Decrement step_cnt after resetting
29782 __end_fct. Mangle __end_fct after setting it to NULL.
29783 * iconv/Makefile (tests): Add tst-gconv-init-failure.
29784 (modules-names, modules-names-tests): Add
29785 tst-gconv-init-failure-mod.
29786 (gconv-modules): New target.
29787 (tst-gconv-init-failure-mod.so): Link against libsupport.
29788 (tst-gconv-init-failure): Depend on gconv-modules,
29789 tst-gconv-init-failure-mod.so.
29790 * iconv/tst-gconv-init-failure-mod.c: New file.
29791 * iconv/tst-gconv-init-failure.c: Likewise.
29792 * iconv/test-gconv-modules: Likewise.
29793
29794 2017-08-29 Florian Weimer <fweimer@redhat.com>
29795
29796 [BZ #22025]
29797 * iconv/gconv_db.c (free_derivation): Remove redundant
29798 parentheses.
29799 (gen_steps): Unconditionally mangle __btowc_fct after
29800 initialization.
29801 (increment_counter): Likewise. Do not call init_fct for internal
29802 modules.
29803
29804 2017-08-29 Joseph Myers <joseph@codesourcery.com>
29805
29806 [BZ #22028]
29807 * math/math.h [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
29808 (_MSUF_): Remove macro.
29809 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (_MSUFTO_):
29810 Likewise.
29811 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
29812 (__REDIRFROM_X): New macro.
29813 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (__REDIRTO_X):
29814 Likewise.
29815 * math/bits/math-finite.h (__REDIRFROM_X): Remove macro.
29816 (__REDIRTO_X): Likewise.
29817 (__MATH_REDIRCALL): Do not pass _MSUF_ or _MSUFTO_ macro
29818 arguments.
29819 (__MATH_REDIRCALL_2): Likewise.
29820 (__MATH_REDIRCALL_INTERNAL): Likewise.
29821 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
29822 (__REDIRFROM (gamma, , _MSUF_)): Likweise.
29823 (__REDIRFROM (__gamma, _r_finite, _MSUF_)): Likewise.
29824 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
29825 * math/test-finite-macros.c: New file.
29826 * math/Makefile (tests): Add test-finite-macros.
29827 (CFLAGS-test-finite-macros.c): New variable.
29828
29829 2017-08-29 Patsy Franklin <pfrankli@redhat.com>
29830 Jeff Law <law@redhat.com>
29831
29832 [BZ #22025]
29833 Mangle NULL pointers in iconv/gconv.
29834 * iconv/gconv_cache.c (find_module): Demangle init_fct before
29835 checking for NULL. Mangle __btowc_fct if init_fct is non-NULL.
29836 * iconv/gconv_db.c (free_derivation): Check that __shlib_handle
29837 is non-NULL before demangling the end_fct. Check for NULL
29838 end_fct after demangling.
29839 (__gconv_release_step): Demangle the end_fct before checking
29840 it for NULL. Remove assert on __shlibc_handle != NULL.
29841 (gen_steps): Don't check btowc_fct for NULL before mangling.
29842 Demangle init_fct before checking for NULL.
29843 (increment_counter): Likewise.
29844 * gconv_dl.c (__gconv_find_shlib): Don't check init_fct or
29845 end_fct for NULL before mangling.
29846 * wcsmbs/btowc.c (__btowc): Demangle btowc_fct before checking
29847 for NULL.
29848
29849 2017-08-29 Akhilesh Kumar <akhilesh.k@samsung.com>
29850
29851 [BZ #21971]
29852 * locale/iso-639.def: add Morisyen.
29853
29854 2017-08-28 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29855
29856 [BZ #21930]
29857 * math/math.h [defined __cplusplus && defined __SUPPORT_SNAN__]
29858 (iszero): New C++ implementation that does not use
29859 fpclassify/__MATH_TG/__builtin_types_compatible_p, when
29860 signaling nans are enabled, since __builtin_types_compatible_p
29861 is a C-only feature.
29862 * math/test-math-iszero.cc: When __HAVE_DISTINCT_FLOAT128 is
29863 defined, include ieee754_float128.h for access to the union and
29864 member ieee854_float128.ieee.
29865 [__HAVE_DISTINCT_FLOAT128] (do_test): Call check_float128.
29866 [__HAVE_DISTINCT_FLOAT128] (check_float128): New function.
29867 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
29868 (CXXFLAGS-test-math-iszero.cc): Add -mfloat128 to the build
29869 options of test-math-zero on powerpc64le.
29870
29871 2017-08-28 H.J. Lu <hongjiu.lu@intel.com>
29872
29873 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
29874 Change double to float.
29875
29876 2017-08-28 Joseph Myers <joseph@codesourcery.com>
29877
29878 * math/math-svid-compat.h [!__ASSEMBLER__]: Make code
29879 unconditional.
29880 * sysdeps/ieee754/s_lib_version.c [!defined SHARED]: Remove
29881 conditional code; define contents only for [LIBM_SVID_COMPAT].
29882
29883 2017-08-28 Florian Weimer <fweimer@redhat.com>
29884
29885 * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-options)
29886 (abi-lp64_be-options): Remove.
29887 * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-options)
29888 (abi-hard-options): Likewise.
29889 * sysdeps/unix/sysv/linux/mips/Makefile(abi-o32_soft-options)
29890 (abi-o32_hard-options, abi-o32_soft_2008-options)
29891 (abi-o32_hard_2008-options, abi-n32_soft-options)
29892 (abi-n32_hard-options, abi-n32_soft_2008-options)
29893 (abi-n32_hard_2008-options, abi-n64_soft-options)
29894 (abi-n64_hard-options, abi-n64_soft_2008-options)
29895 (abi-n64_hard_2008-options): Likewise.
29896 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-32-options)
29897 (abi-64-v1-options, abi-64-v2-options): Likewise.
29898 * sysdeps/unix/sysv/linux/s390/Makefile (abi-32-options)
29899 (abi-64-options): Likewise.
29900 * sysdeps/unix/sysv/linux/sparc/Makefile (abi-32-options)
29901 (abi-64-options): Likewise.
29902 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile (abi-32-options)
29903 (abi-64-options): Likewise.
29904 * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-options)
29905 (abi-64-options, abi-x32-options): Likewise.
29906
29907 2017-08-28 Florian Weimer <fweimer@redhat.com>
29908
29909 Store supported list of SYS_* system calls in the source tree.
29910 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
29911 (bits/syscall.h): Generate from list file.
29912 [$(subdir) = misc] (before-compile): Add bits/syscall.h.
29913 [$(subdir) = misc] (tests): Add tst-syscall-list.
29914 [$(subdir) = misc] (tests-special): Add tst-syscall-list.out
29915 [$(subdir) = misc] (tst-syscall-list-macros.list)
29916 [$(subdir) = misc] (tst-syscall-list-nr.list)
29917 (tst-syscall-list-sys.list): Helper targets for new
29918 tst-syscall-list test.
29919 [$(subdir) = misc] (tst-syscall-list.out): Run test script
29920 tst-syscall-list.sh.
29921 [$(subdir) = misc] (bits/syscall%h, bits/syscall%d): Remove
29922 target. Do not include bits/syscall.d.
29923 [$(subdir) = misc] (generated): Do not update.
29924 * sysdeps/unix/sysv/linux/syscall-names.list: New file.
29925 * sysdeps/unix/sysv/linux/gen-syscall-h.awk: Likewise.
29926 * sysdeps/unix/sysv/linux/filter-nr-syscalls.awk: Likewise.
29927 * sysdeps/unix/sysv/linux/tst-syscall-list.sh: Likewise.
29928
29929 2017-08-27 Paul Pluzhnikov <ppluzhnikov@google.com>
29930
29931 * stdlib/Makefile (tst-atexit, tst-at_quick_exit): New tests.
29932 (tst-cxa_atexit, tst-on_exit): Likewise.
29933 * stdlib/Makefile (tests): Add tst-atexit, tst-at_quick_exit,
29934 tst-cxa_atexit, and tst-on_exit.
29935 * stdlib/tst-atexit-common.c: New file.
29936 * stdlib/tst-atexit.c: New file.
29937 * stdlib/tst-at_quick_exit.c: New file.
29938 * stdlib/tst-cxa_atexit.c: New file.
29939 * stdlib/tst-on_exit.c: New file.
29940
29941 2017-08-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
29942
29943 * sysdeps/mach/hurd/bits/sysmacros.h: New file.
29944 * mach/stack_chk_fail_local.c: New file.
29945 * hurd/stack_chk_fail_local.c: New file.
29946 * mach/Machrules ($(interface-library)-routines): Add
29947 stack_chk_fail_local.
29948 * mach/Makefile (CFLAGS-mach_init.o, CFLAGS-RPC_vm_statistics.o,
29949 CFLAGS-RPC_vm_map.o, CFLAGS-RPC_vm_protect.o,
29950 CFLAGS-RPC_i386_set_gdt.o, CFLAGS-RPC_i386_set_ldt.o,
29951 CFLAGS-RPC_task_get_special_port.o): Add $(no-stack-protector).
29952 * hurd/Makefile (CFLAGS-hurdstartup.o,
29953 CFLAGS-RPC_exec_startup_get_info.o): Add $(no-stack-protector).
29954
29955 2017-08-25 H.J. Lu <hongjiu.lu@intel.com>
29956
29957 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
29958 (index_cpu_*, index_arch_*): Removed.
29959
29960 2017-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
29961
29962 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h (elf_greg_t):
29963 Use uint64_t instead of unsigned long.
29964
29965 2017-08-25 Joseph Myers <joseph@codesourcery.com>
29966
29967 * math/tgmath.h [__HAVE_FLOAT128]: Change conditional to
29968 [__HAVE_DISTINCT_FLOAT128].
29969
29970 * math/math.h (_MSUFTO_): Define and undefine for each inclusion
29971 of <bits/math-finite.h>.
29972 (__MATH_DECLARING_LDOUBLE): Do not define and undefine for each
29973 inclusion of <bits/math-finite.h>.
29974 * math/bits/math-finite.h (__REDIRTO_X): Do not define
29975 conditionally on [__MATH_DECLARING_LDOUBLE && defined
29976 __NO_LONG_DOUBLE_MATH].
29977 (__MATH_REDIRCALL): Use _MSUFTO_ in __REDIRTO call.
29978 (__MATH_REDIRCALL_2): Likewise.
29979 (__MATH_REDIRCALL_INTERNAL): Likewise.
29980 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
29981 (__REDIRFROM (gamma, , _MSUF_)): Likewise.
29982 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
29983
29984 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-power5.S:
29985 Remove file.
29986 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-ppc32.S:
29987 Likewise.
29988 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat.c:
29989 Likewise.
29990 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-power5.S:
29991 Likewise.
29992 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-ppc32.S:
29993 Likewise.
29994 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat.c:
29995 Likewise.
29996 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
29997 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
29998 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
29999 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
30000 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile
30001 (libm-sysdep-routines): Remove w_sqrt_compat-power5,
30002 w_sqrt_compat-ppc32, w_sqrtf_compat-power5 and
30003 w_sqrtf_compat-ppc32.
30004
30005 2017-08-24 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30006
30007 * math/math.h [defined __cplusplus] (issignaling): In the long
30008 double case, call __issignalingl only if __NO_LONG_DOUBLE_MATH
30009 is not defined. Call __issignaling, otherwise.
30010
30011 2017-08-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30012
30013 * sysdeps/unix/make-syscalls.sh: Remove cancellable tagging for
30014 syscall definitions and replace __builtin_expect with __glibc_likely.
30015 * sysdeps/unix/syscall-template.S: Update comment about cancellable
30016 syscall.
30017 (SYSCALL_CANCELLABLE): Removedefinition
30018 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (PSEUDO): Remove
30019 definition.
30020 (PSEUDO_END): Likewise.
30021 [IS_IN (libpthread)] (CENABLE): Likewise.
30022 [IS_IN (libpthread)] (CDISABLE): Likewise.
30023 [IS_IN (libc)] (CENABLE): Likewise.
30024 [IS_IN (libc)] (CENABLE): Likewise.
30025 [IS_IN (librt)] (CDISABLE): Likewise.
30026 [IS_IN (librt)] (CDISABLE): Likewise.
30027 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30028 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (PSEUDO): Remove
30029 definition.
30030 (PSEUDO_END): Likewise.
30031 [IS_IN (libpthread)] (__local_enable_asynccancel): Likewise.
30032 [IS_IN (libpthread)] (__local_disable_asynccancel): Likewise.
30033 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
30034 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
30035 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
30036 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
30037 (CENABLE): Likewise.
30038 (CDISABLE): Likewise.
30039 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30040 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (PSEUDO): Remove
30041 defintion.
30042 (PSEUDO_END): Likewise.
30043 [IS_IN (libpthread)] (CENABLE): Likewise.
30044 [IS_IN (libpthread)] (CDISABLE): Likewise.
30045 [IS_IN (libc)] (CENABLE): Likewise.
30046 [IS_IN (libc)] (CENABLE): Likewise.
30047 [IS_IN (librt)] (CDISABLE): Likewise.
30048 [IS_IN (librt)] (CDISABLE): Likewise.
30049 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30050 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (PSEUDO): Remove
30051 definition.
30052 (PSEUDO_END): Likewise.
30053 [IS_IN (libpthread)] (CENABLE): Likewise.
30054 [IS_IN (libpthread)] (CDISABLE): Likewise.
30055 [IS_IN (libc)] (CENABLE): Likewise.
30056 [IS_IN (libc)] (CENABLE): Likewise.
30057 [IS_IN (librt)] (CDISABLE): Likewise.
30058 [IS_IN (librt)] (CDISABLE): Likewise.
30059 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30060 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (PSEUDO): Remove
30061 definition.
30062 (PSEUDO_END): Likewise.
30063 [IS_IN (libpthread)] (CENABLE): Likewise.
30064 [IS_IN (libpthread)] (CDISABLE): Likewise.
30065 [IS_IN (libc)] (CENABLE): Likewise.
30066 [IS_IN (libc)] (CENABLE): Likewise.
30067 [IS_IN (librt)] (CDISABLE): Likewise.
30068 [IS_IN (librt)] (CDISABLE): Likewise.
30069 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30070 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Remove
30071 definition.
30072 (PSEUDO_END): Likewise.
30073 [IS_IN (libpthread)] (CENABLE): Likewise.
30074 [IS_IN (libpthread)] (CDISABLE): Likewise.
30075 [IS_IN (libc)] (CENABLE): Likewise.
30076 [IS_IN (libc)] (CENABLE): Likewise.
30077 [IS_IN (librt)] (CDISABLE): Likewise.
30078 [IS_IN (librt)] (CDISABLE): Likewise.
30079 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30080 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (PSEUDO): Remove
30081 definition.
30082 (PSEUDO_END): Likewise.
30083 [IS_IN (libpthread)] (CENABLE): Likewise.
30084 [IS_IN (libpthread)] (CDISABLE): Likewise.
30085 [IS_IN (libc)] (CENABLE): Likewise.
30086 [IS_IN (libc)] (CENABLE): Likewise.
30087 [IS_IN (librt)] (CDISABLE): Likewise.
30088 [IS_IN (librt)] (CDISABLE): Likewise.
30089 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30090 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h (PSEUDO): Remove
30091 definition.
30092 (PSEUDO_END): Likewise.
30093 [IS_IN (libpthread)] (CENABLE): Likewise.
30094 [IS_IN (libpthread)] (CDISABLE): Likewise.
30095 [IS_IN (libc)] (CENABLE): Likewise.
30096 [IS_IN (libc)] (CENABLE): Likewise.
30097 [IS_IN (librt)] (CDISABLE): Likewise.
30098 [IS_IN (librt)] (CDISABLE): Likewise.
30099 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30100 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h (PSEUDO):
30101 Remove definition.
30102 (PSEUDO_END): Likewise.
30103 [IS_IN (libpthread)] (CENABLE): Likewise.
30104 [IS_IN (libpthread)] (CDISABLE): Likewise.
30105 [IS_IN (libc)] (CENABLE): Likewise.
30106 [IS_IN (libc)] (CENABLE): Likewise.
30107 [IS_IN (librt)] (CDISABLE): Likewise.
30108 [IS_IN (librt)] (CDISABLE): Likewise.
30109 (SINGLE_THREAD_P): Likewise.
30110 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (PSEUDO): Remove
30111 definition.
30112 (PSEUDO_END): Likewise.
30113 [IS_IN (libpthread)] (CENABLE): Likewise.
30114 [IS_IN (libpthread)] (CDISABLE): Likewise.
30115 [IS_IN (libc)] (CENABLE): Likewise.
30116 [IS_IN (libc)] (CENABLE): Likewise.
30117 [IS_IN (librt)] (CDISABLE): Likewise.
30118 [IS_IN (librt)] (CDISABLE): Likewise.
30119 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30120 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (PSEUDO): Remove
30121 definition.
30122 (PSEUDO_END): Likewise.
30123 [IS_IN (libpthread)] (CENABLE): Likewise.
30124 [IS_IN (libpthread)] (CDISABLE): Likewise.
30125 [IS_IN (libc)] (CENABLE): Likewise.
30126 [IS_IN (libc)] (CENABLE): Likewise.
30127 [IS_IN (librt)] (CDISABLE): Likewise.
30128 [IS_IN (librt)] (CDISABLE): Likewise.
30129 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30130 * sysdeps/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Remove file.
30131 * sysdeps/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
30132 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: New file.
30133 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (PSEUDO): Remove
30134 definition.
30135 (PSEUDO_END): Likewise.
30136 [IS_IN (libpthread)] (CENABLE): Likewise.
30137 [IS_IN (libpthread)] (CDISABLE): Likewise.
30138 [IS_IN (libc)] (CENABLE): Likewise.
30139 [IS_IN (libc)] (CENABLE): Likewise.
30140 [IS_IN (librt)] (CDISABLE): Likewise.
30141 [IS_IN (librt)] (CDISABLE): Likewise.
30142 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30143 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (PSEUDO): Remove
30144 definition.
30145 (PSEUDO_END): Likewise.
30146 [IS_IN (libpthread)] (CENABLE): Likewise.
30147 [IS_IN (libpthread)] (CDISABLE): Likewise.
30148 [IS_IN (libc)] (CENABLE): Likewise.
30149 [IS_IN (libc)] (CENABLE): Likewise.
30150 [IS_IN (librt)] (CDISABLE): Likewise.
30151 [IS_IN (librt)] (CDISABLE): Likewise.
30152 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30153 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (PSEUDO): Remove
30154 definition.
30155 (PSEUDO_END): Likewise.
30156 [IS_IN (libpthread)] (CENABLE): Likewise.
30157 [IS_IN (libpthread)] (CDISABLE): Likewise.
30158 [IS_IN (libc)] (CENABLE): Likewise.
30159 [IS_IN (libc)] (CENABLE): Likewise.
30160 [IS_IN (librt)] (CDISABLE): Likewise.
30161 [IS_IN (librt)] (CDISABLE): Likewise.
30162 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30163 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Remove file.
30164 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
30165 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: New file.
30166 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (PSEUDO): Remove
30167 definition.
30168 (PSEUDO_END): Likewise.
30169 [IS_IN (libpthread)] (CENABLE): Likewise.
30170 [IS_IN (libpthread)] (CDISABLE): Likewise.
30171 [IS_IN (libc)] (CENABLE): Likewise.
30172 [IS_IN (libc)] (CENABLE): Likewise.
30173 [IS_IN (librt)] (CDISABLE): Likewise.
30174 [IS_IN (librt)] (CDISABLE): Likewise.
30175 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30176 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (PSEUDO): Remove
30177 definition.
30178 (PSEUDO_END): Likewise.
30179 [IS_IN (libpthread)] (CENABLE): Likewise.
30180 [IS_IN (libpthread)] (CDISABLE): Likewise.
30181 [IS_IN (libc)] (CENABLE): Likewise.
30182 [IS_IN (libc)] (CENABLE): Likewise.
30183 [IS_IN (librt)] (CDISABLE): Likewise.
30184 [IS_IN (librt)] (CDISABLE): Likewise.
30185 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30186
30187 2017-08-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
30188
30189 * sysdeps/ieee754/dbl-64/Makefile: Don't override CFLAGS.
30190
30191 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30192
30193 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
30194
30195 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30196
30197 [BZ #21982]
30198 * string/stratcliff.c (do_test): Declare size, nchars, inner,
30199 middle and outer with size_t instead of int. Repleace %d and
30200 %Zd with %zu in printf. Update "MAX (0, nchars - 128)" and
30201 "MAX (outer, nchars - 64)" to support unsigned outer and
30202 nchars. Also exit loop when outer == 0.
30203
30204 2017-08-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30205
30206 * include/fcntl.h (__fcntl_nocancel): Remove definition.
30207 * include/signal.h (__sigsuspend_nocancel): Likewise.
30208 * include/time.h (__nanosleep_nocancel): Likewise.
30209 * sysdeps/generic/not-cancel.h (__fcntl_nocancel): New macro.
30210 * login/utmp_file.c: Include non cancellable syscall header.
30211 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): New
30212 prototype.
30213
30214 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30215
30216 * sysdeps/x86_64/fpu/svml_d_sincos8_core.S: Replace AVX512F
30217 .byte sequences with AVX512F instructions.
30218 * sysdeps/x86_64/fpu/svml_d_wrapper_impl.h: Likewise.
30219 * sysdeps/x86_64/fpu/svml_s_sincosf16_core.S: Likewise.
30220 * sysdeps/x86_64/fpu/svml_s_wrapper_impl.h: Likewise.
30221 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core_avx512.S:
30222 Likewise.
30223 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
30224 Likewise.
30225
30226 2017-08-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
30227 Steve Ellcey <sellcey@cavium.com>
30228
30229 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic):
30230 Use PTR_REG macro in cmp instruction.
30231
30232 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30233
30234 * include/libc-symbols.h: [!defined HAVE_GCC_IFUNC] (__ifunc):
30235 Change the return type of the ifunc resolver to match the return
30236 type of the target function.
30237
30238 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30239
30240 * sysdeps/unix/sysv/linux/x86_64/syscalls.list (pread64): Remove.
30241 (preadv64): Likewise.
30242 (pwrite64(: Likewise.
30243 (pwritev64): Likewise.
30244
30245 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
30246 (INTERNAL_SYSCALL_NCS_TYPES): Remove define.
30247 (LOAD_ARGS_0): Likewise.
30248 (LOAD_ARGS_1): Likewise.
30249 (LOAD_ARGS_2): Likewise.
30250 (LOAD_ARGS_3): Likewise.
30251 (LOAD_ARGS_4): Likewise.
30252 (LOAD_ARGS_5): Likewise.
30253 (LOAD_ARGS_6): Likewise.
30254 (LOAD_REGS_0): Likewise.
30255 (LOAD_REGS_1): Likewise.
30256 (LOAD_REGS_2): Likewise.
30257 (LOAD_REGS_3): Likewise.
30258 (LOAD_REGS_4): Likewise.
30259 (LOAD_REGS_5): Likewise.
30260 (LOAD_REGS_6): Likewise.
30261 (ASM_ARGS_0): Likewise.
30262 (ASM_ARGS_1): Likewise.
30263 (ASM_ARGS_2): Likewise.
30264 (ASM_ARGS_3): Likewise.
30265 (ASM_ARGS_4): Likewise.
30266 (ASM_ARGS_5): Likewise.
30267 (ASM_ARGS_6): Likewise.
30268 (LOAD_ARGS_TYPES_1): Likewise.
30269 (LOAD_ARGS_TYPES_2): Likewise.
30270 (LOAD_ARGS_TYPES_3): Likewise.
30271 (LOAD_ARGS_TYPES_4): Likewise.
30272 (LOAD_ARGS_TYPES_5): Likewise.
30273 (LOAD_ARGS_TYPES_6): Likewise.
30274 (LOAD_REGS_TYPES_1): Likewise.
30275 (LOAD_REGS_TYPES_2): Likewise.
30276 (LOAD_REGS_TYPES_3): Likewise.
30277 (LOAD_REGS_TYPES_4): Likewise.
30278 (LOAD_REGS_TYPES_5): Likewise.
30279 (LOAD_REGS_TYPES_6): Likewise.
30280 (TYPEFY): New define.
30281 (ARGIFY): Likewise.
30282 (internal_syscall0): Likewise.
30283 (internal_syscall1): Likewise.
30284 (internal_syscall2): Likewise.
30285 (internal_syscall3): Likewise.
30286 (internal_syscall4): Likewise.
30287 (internal_syscall5): Likewise.
30288 (internal_syscall6): Likewise.
30289 * sysdeps/unix/sysv/linux/x86_64/x32/times.c
30290 (INTERNAL_SYSCALL_NCS): Remove define.
30291 (internal_syscall1): Add define.
30292
30293 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30294
30295 * math/w_remainder_compat.c: Remove duplicate inclusion of
30296 math-svid-compat.h.
30297 * math/w_remainderf_compat.c: Likewise.
30298 * math/w_remainderl_compat.c: Likewise.
30299
30300 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30301
30302 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30303
30304 2017-08-22 Joseph Myers <joseph@codesourcery.com>
30305
30306 [BZ #21684]
30307 * math/tgmath.h (__floating_type): Simplify definitions.
30308 (__real_integer_type): New macro.
30309 (__complex_integer_type): Likewise.
30310 (__expr_is_real): Likewise.
30311 (__tgmath_real_type_sub): Update comment to describe handling of
30312 complex types.
30313 (__tgmath_complex_type_sub): New macro.
30314 (__tgmath_complex_type): Likewise.
30315 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
30316 (__TGMATH_CF128): Use __expr_is_real.
30317 (__TGMATH_UNARY_REAL_IMAG): Use __tgmath_complex_type and
30318 __expr_is_real.
30319 (__TGMATH_BINARY_REAL_IMAG): Likewise.
30320 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Use __expr_is_real.
30321 * math/gen-tgmath-tests.py (Type.create_type): Create complex
30322 integer types.
30323
30324 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30325
30326 * sysdeps/generic/not-cancel.h (sigsuspend_not_cancel): Remove
30327 macro.
30328 * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Remove
30329 alias.
30330 * sysdeps/unix/sysv/linux/not-cancel.h (sigsuspend_not_cancel):
30331 Likewise.
30332
30333 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Replace
30334 nanosleep_not_cancel with __nanosleep_nocancel.
30335 * sysdeps/generic/not-cancel.h (nanosleep_not_cancel): Remove macro.
30336 (__nanosleep_nocancel): New macro.
30337 * sysdeps/unix/sysv/linux/nanosleep.c (__nanosleep_nocancel): New
30338 function.
30339 * sysdeps/unix/sysv/linux/not-cancel.h (nanosleep_not_cancel): Remove
30340 macro.
30341 (__nanosleep_nocancel): New prototype.
30342
30343 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full): Replace
30344 pause_not_cancel with __pause_nocancel.
30345 * sysdeps/generic/not-cancel.h (pause_not_cancel): Remove macro.
30346 (__pause_nocancel): New macro.
30347 * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): Remove
30348 macro.
30349 (__pause_nocancel): New prototype.
30350 * sysdeps/unix/sysv/linux/pause.c (__pause_nocancel): New function.
30351
30352 2017-08-22 Martin Sebor <msebor@redhat.com>
30353
30354 * include/libc-symbols.h (__ifunc_resolver): Declare resolver
30355 to return a pointer to the same type as the target function.
30356
30357 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
30358
30359 [BZ #18822]
30360 [BZ #21986]
30361 * include/printf.h (__printf_fphex): Add attribute_hidden.
30362 (__guess_grouping): New prototype.
30363 * stdio-common/printf_fp.c (__guess_grouping): Removed.
30364 * stdio-common/reg-printf.c (__register_printf_specifier): Add
30365 libc_hidden_proto and libc_hidden_def.
30366 * stdlib/strfmon_l.c (__guess_grouping): Removed.
30367 (__vstrfmon_l): Remove the third argument passed to
30368 __guess_grouping.
30369
30370 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30371
30372 * math/math.h [defined __cplusplus] (issignaling): Provide a C++
30373 definition for issignaling that does not rely on __MATH_TG,
30374 since __MATH_TG uses __builtin_types_compatible_p, which is only
30375 available in C mode.
30376 (CFLAGS-test-math-issignaling.cc): New variable.
30377 * math/Makefile [CXX] (tests): Add test-math-issignaling.
30378 * math/test-math-issignaling.cc: New test for C++ implementation
30379 of type-generic issignaling.
30380 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
30381 (CXXFLAGS-test-math-issignaling.cc): Add -mfloat128 to the build
30382 options of test-math-issignaling on powerpc64le.
30383
30384 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
30385
30386 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30387 building libc.a.
30388 (hidden_proto): Likewise.
30389 (hidden_tls_proto): Likewise.
30390 (__hidden_proto): Likewise.
30391
30392 2017-08-22 Florian Weimer <fweimer@redhat.com>
30393
30394 math: Statically link tests of internal functionality.
30395 * math/Makefile (tests): Remove atest-exp, atest-sincos,
30396 atest-exp2.
30397 (tests-static): Add atest-exp, atest-sincos, atest-exp2.
30398 (gmp-objs): Remove assignment.
30399 (atest-exp, atest-sincos, atest-exp2): Remove targets.
30400
30401 2017-08-22 Joseph Myers <joseph@codesourcery.com>
30402
30403 [BZ #21987]
30404 * sysdeps/unix/sysv/linux/sparc/bits/long-double.h: Remove file
30405 and copy to ...
30406 * sysdeps/unix/sysv/linux/sparc/sparc32/bits/long-double.h:
30407 ... here.
30408 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/long-double.h:
30409 ... and here.
30410
30411 * assert/Makefile [$(have-cxx-thread_local)]: Move conditional
30412 variable definitions above inclusion of ../Rules.
30413
30414 2017-08-21 Joseph Myers <joseph@codesourcery.com>
30415
30416 * sysdeps/ieee754/k_standard.c (__kernel_standard): Add default
30417 case calling __builtin_unreachable.
30418
30419 2017-08-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30420
30421 * libio/ioopen.c (_IO_waitpid): Replace waitpid_not_cancel with
30422 __waitpid_nocancel.
30423 * sysdeps/generic/not-cancel.h (waitpid_not_cancel): Remove macro.
30424 (__waitpid_nocancel): New macro.
30425 * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel): Remove
30426 macro.
30427 (__waitpid_nocancel): Replace macro with a function.
30428 * sysdeps/unix/sysv/linux/waitpid.c (__waitpid_nocancel): New
30429 function.
30430
30431 * login/utmp_file.c (timeout_handler): Replace fcntl_not_cancel with
30432 __fcntl_nocancel.
30433 * sysdeps/generic/not-cancel.h (fcntl_not_cancel): Remove macro.
30434 * sysdeps/unix/sysv/linux/not-cancel.h (fcntl_not_cancel): Likewise.
30435
30436 * gmon/gmon.c (write_hist): Replace writev_not_cancel_no_status with
30437 __writev_nocancel_nostatus.
30438 (write_call_graph): Likewise.
30439 (write_bb_counts): Likewise.
30440 * resolv/herror.c (herror): Likewise.
30441 * sysdeps/generic/not-cancel.h (writev_not_cancel_no_status): Remove
30442 macro.
30443 (__writev_nocancel_nostatus): New macro.
30444 * sysdeps/unix/sysv/linux/not-cancel.h (writev_not_cancel_no_status):
30445 Remove macro.
30446 (__writev_nocancel_nostatus): New function.
30447
30448 2017-08-21 Joseph Myers <joseph@codesourcery.com>
30449
30450 Revert:
30451 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30452
30453 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30454 building libc.a.
30455 (hidden_proto): Likewise.
30456 (hidden_tls_proto): Likewise.
30457 (__hidden_proto): Likewise.
30458
30459 [BZ #21973]
30460 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Remove file.
30461 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
30462 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
30463 Likewise.
30464 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat.S:
30465 Likewise.
30466 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
30467 Likewise.
30468 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat.S:
30469 Likewise.
30470 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S : Likewise.
30471 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
30472 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
30473 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
30474 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
30475 GLIBC_2.0 sqrtl symbol.
30476
30477 * math/math.h [__USE_MISC] (_LIB_VERSION_TYPE): Remove.
30478 [__USE_MISC] (_LIB_VERSION): Likewise.
30479 [__USE_MISC] (struct exception): Likewise.
30480 [__USE_MISC] (matherr): Likewise.
30481 [__USE_MISC] (DOMAIN): Likewise.
30482 [__USE_MISC] (SING): Likewise.
30483 [__USE_MISC] (OVERFLOW): Likewise.
30484 [__USE_MISC] (UNDERFLOW): Likewise.
30485 [__USE_MISC] (TLOSS): Likewise.
30486 [__USE_MISC] (PLOSS): Likewise.
30487 [__USE_MISC] (HUGE): Likewise.
30488 [__USE_XOPEN] (MAXFLOAT): Define even if [__USE_MISC].
30489 * math/math-svid-compat.h: New file.
30490 * conform/linknamespace.pl (@whitelist): Remove matherr, matherrf
30491 and matherrl.
30492 * include/math.h [!_ISOMAC] (__matherr): Remove.
30493 * manual/arith.texi (FP Exceptions): Do not document matherr.
30494 * math/Makefile (tests): Change test-matherr to test-matherr-3.
30495 (tests-internal): New variable.
30496 (install-lib): Do not add libieee.a.
30497 (non-lib.a): Likewise.
30498 (extra-objs): Do not add libieee.a and ieee-math.o.
30499 (CPPFLAGS-s_lib_version.c): Remove variable.
30500 ($(objpfx)libieee.a): Remove rule.
30501 ($(addprefix $(objpfx), $(tests-internal)): Depend on $(libm).
30502 * math/ieee-math.c: Remove.
30503 * math/libm-test-support.c (matherr): Remove.
30504 * math/test-matherr.c: Use <support/test-driver.c>. Add copyright
30505 and license notices. Include <math-svid-compat.h> and
30506 <shlib-compat.h>.
30507 (matherr): Undefine as macro. Use compat_symbol_reference.
30508 (_LIB_VERSION): Likewise.
30509 * math/test-matherr-2.c: New file.
30510 * math/test-matherr-3.c: Likewise.
30511 * sysdeps/generic/math_private.h (__kernel_standard): Remove
30512 declaration.
30513 (__kernel_standard_f): Likewise.
30514 (__kernel_standard_l): Likewise.
30515 * sysdeps/ieee754/s_lib_version.c: Do not include <math.h> or
30516 <math_private.h>. Include <math-svid-compat.h>.
30517 (_LIB_VERSION): Undefine as macro.
30518 (_LIB_VERSION_INTERNAL): Always initialize to _POSIX_. Define
30519 only if [LIBM_SVID_COMPAT || !defined SHARED]. If
30520 [LIBM_SVID_COMPAT], use compat_symbol.
30521 * sysdeps/ieee754/s_matherr.c: Do not include <math.h> or
30522 <math_private.h>. Include <math-svid-compat.h>.
30523 (matherr): Undefine as macro.
30524 (__matherr): Define only if [LIBM_SVID_COMPAT]. Use
30525 compat_symbol.
30526 * sysdeps/ia64/fpu/libm_error.c: Include <math-svid-compat.h>.
30527 [_LIBC && LIBM_SVID_COMPAT] (matherrf): Use
30528 compat_symbol_reference.
30529 [_LIBC && LIBM_SVID_COMPAT] (matherrl): Likewise.
30530 [_LIBC && !LIBM_SVID_COMPAT] (matherrf): Define as macro.
30531 [_LIBC && !LIBM_SVID_COMPAT] (matherrl): Likewise.
30532 * sysdeps/ia64/fpu/libm_support.h: Include <math-svid-compat.h>.
30533 (MATHERR_D): Remove declaration.
30534 [!_LIBC] (_LIB_VERSION_TYPE): Likewise
30535 [!LIBM_BUILD] (_LIB_VERSIONIMF): Likewise.
30536 [LIBM_BUILD] (pmatherrf): Likewise.
30537 [LIBM_BUILD] (pmatherr): Likewise.
30538 [LIBM_BUILD] (pmatherrl): Likewise.
30539 (DOMAIN): Likewise.
30540 (SING): Likewise.
30541 (OVERFLOW): Likewise.
30542 (UNDERFLOW): Likewise.
30543 (TLOSS): Likewise.
30544 (PLOSS): Likewise.
30545 * sysdeps/ia64/fpu/s_matherrf.c: Include <math-svid-compat.h>.
30546 (__matherrf): Define only if [LIBM_SVID_COMPAT]. Use
30547 compat_symbol.
30548 * sysdeps/ia64/fpu/s_matherrl.c: Include <math-svid-compat.h>.
30549 (__matherrl): Define only if [LIBM_SVID_COMPAT]. Use
30550 compat_symbol.
30551 * math/lgamma-compat.h: Include <math-svid-compat.h>.
30552 * math/w_acos_compat.c: Likewise.
30553 * math/w_acosf_compat.c: Likewise.
30554 * math/w_acosh_compat.c: Likewise.
30555 * math/w_acoshf_compat.c: Likewise.
30556 * math/w_acoshl_compat.c: Likewise.
30557 * math/w_acosl_compat.c: Likewise.
30558 * math/w_asin_compat.c: Likewise.
30559 * math/w_asinf_compat.c: Likewise.
30560 * math/w_asinl_compat.c: Likewise.
30561 * math/w_atan2_compat.c: Likewise.
30562 * math/w_atan2f_compat.c: Likewise.
30563 * math/w_atan2l_compat.c: Likewise.
30564 * math/w_atanh_compat.c: Likewise.
30565 * math/w_atanhf_compat.c: Likewise.
30566 * math/w_atanhl_compat.c: Likewise.
30567 * math/w_cosh_compat.c: Likewise.
30568 * math/w_coshf_compat.c: Likewise.
30569 * math/w_coshl_compat.c: Likewise.
30570 * math/w_exp10_compat.c: Likewise.
30571 * math/w_exp10f_compat.c: Likewise.
30572 * math/w_exp10l_compat.c: Likewise.
30573 * math/w_exp2_compat.c: Likewise.
30574 * math/w_exp2f_compat.c: Likewise.
30575 * math/w_exp2l_compat.c: Likewise.
30576 * math/w_fmod_compat.c: Likewise.
30577 * math/w_fmodf_compat.c: Likewise.
30578 * math/w_fmodl_compat.c: Likewise.
30579 * math/w_hypot_compat.c: Likewise.
30580 * math/w_hypotf_compat.c: Likewise.
30581 * math/w_hypotl_compat.c: Likewise.
30582 * math/w_j0_compat.c: Likewise.
30583 * math/w_j0f_compat.c: Likewise.
30584 * math/w_j0l_compat.c: Likewise.
30585 * math/w_j1_compat.c: Likewise.
30586 * math/w_j1f_compat.c: Likewise.
30587 * math/w_j1l_compat.c: Likewise.
30588 * math/w_jn_compat.c: Likewise.
30589 * math/w_jnf_compat.c: Likewise.
30590 * math/w_jnl_compat.c: Likewise.
30591 * math/w_lgamma_main.c: Likewise.
30592 * math/w_lgamma_r_compat.c: Likewise.
30593 * math/w_lgammaf_main.c: Likewise.
30594 * math/w_lgammaf_r_compat.c: Likewise.
30595 * math/w_lgammal_main.c: Likewise.
30596 * math/w_lgammal_r_compat.c: Likewise.
30597 * math/w_log10_compat.c: Likewise.
30598 * math/w_log10f_compat.c: Likewise.
30599 * math/w_log10l_compat.c: Likewise.
30600 * math/w_log2_compat.c: Likewise.
30601 * math/w_log2f_compat.c: Likewise.
30602 * math/w_log2l_compat.c: Likewise.
30603 * math/w_log_compat.c: Likewise.
30604 * math/w_logf_compat.c: Likewise.
30605 * math/w_logl_compat.c: Likewise.
30606 * math/w_pow_compat.c: Likewise.
30607 * math/w_powf_compat.c: Likewise.
30608 * math/w_powl_compat.c: Likewise.
30609 * math/w_remainder_compat.c: Likewise.
30610 * math/w_remainderf_compat.c: Likewise.
30611 * math/w_remainderl_compat.c: Likewise.
30612 * math/w_scalb_compat.c: Likewise.
30613 * math/w_scalbf_compat.c: Likewise.
30614 * math/w_scalbl_compat.c: Likewise.
30615 * math/w_sinh_compat.c: Likewise.
30616 * math/w_sinhf_compat.c: Likewise.
30617 * math/w_sinhl_compat.c: Likewise.
30618 * math/w_sqrt_compat.c: Likewise.
30619 * math/w_sqrtf_compat.c: Likewise.
30620 * math/w_sqrtl_compat.c: Likewise.
30621 * math/w_tgamma_compat.c: Likewise.
30622 * math/w_tgammaf_compat.c: Likewise.
30623 * math/w_tgammal_compat.c: Likewise.
30624 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Likewise.
30625 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
30626 * sysdeps/ieee754/k_standard.c: Likewise.
30627 * sysdeps/ieee754/k_standardf.c: Likewise.
30628 * sysdeps/ieee754/k_standardl.c: Likewise.
30629 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
30630 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
30631 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
30632 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
30633 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
30634 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
30635 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
30636 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Likewise.
30637 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
30638 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
30639 Likewise.
30640 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
30641 Likewise.
30642 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S: Likewise.
30643 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
30644 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
30645 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
30646
30647 2017-08-21 Florian Weimer <fweimer@redhat.com>
30648
30649 [BZ #21864]
30650 Do not compile benchmark helper objects with -DMODULE_NAME=libc.
30651 * benchtests/Makefile (others-extras): Set to $(bench-extra-objs).
30652 Move before inclusion of ../Rules.
30653
30654 2017-08-21 Florian Weimer <fweimer@redhat.com>
30655
30656 [BZ #21972]
30657 * assert/assert.h (assert): Use static_cast (bool) for C++.
30658 Use the ternary operator in the warning branch for GNU C.
30659 * assert/Makefile (tests): Add tst-assert-c++, tst-assert-g++.
30660 (CFLAGS-tst-assert-c++.o): Compile in C++11 mode.
30661 (CFLAGS-tst-assert-g++.o): Compile in GnU C++11 mode.
30662 (LDLIBS-tst-assert-c++, LDLIBS-tst-assert-g++): Link with libstdc++.
30663 * assert/tst-assert-c++.cc, assert/tst-assert-g++.cc: New files.
30664
30665 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30666
30667 [BZ #18822]
30668 * sysdeps/unix/sysv/linux/x86_64/init-first.c
30669 (__syscall_clock_gettime): Add attribute_hidden.
30670 * sysdeps/unix/sysv/linux/x86_64/makecontext.c
30671 (__start_context): Likewise.
30672
30673 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30674
30675 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30676 building libc.a.
30677 (hidden_proto): Likewise.
30678 (hidden_tls_proto): Likewise.
30679 (__hidden_proto): Likewise.
30680
30681 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30682
30683 * include/libc-symbols.h (attribute_hidden): Enable hidden
30684 visibility in libc.a compiled with PIE.
30685
30686 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30687
30688 [BZ #18822]
30689 * sysdeps/unix/sysv/linux/x86/libc-vdso.h (VDSO_SYMBOL(getcpu)):
30690 Add attribute_hidden.
30691
30692 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30693
30694 [BZ #21864]
30695 * Makerules (all-nonlib): Add $(others-extras).
30696 * catgets/Makefile (others-extras): New.
30697 * elf/Makefile (others-extras): Likewise.
30698 * nss/Makefile (others-extras): Likewise.
30699
30700 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30701
30702 [BZ #18822]
30703 * csu/libc-start.c (__libc_multiple_libcs): Removed.
30704 * elf/dl-open.c: Include <libc-internal.h>.
30705 (__libc_multiple_libcs): Removed.
30706 * elf/dl-sysdep.c: Include <libc-internal.h> instead of
30707 <hp-timing.h>.
30708 * include/libc-internal.h (__libc_multiple_libcs): New.
30709 * misc/sbrk.c: Include <libc-internal.h>.
30710 (__libc_multiple_libcs): Removed.
30711
30712 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30713
30714 [BZ #18822]
30715 * grp/initgroups.c (__nss_group_database): Removed.
30716 (__nss_initgroups_database): Likewise.
30717 * nscd/gai.c (__nss_hosts_database): Likewise.
30718 * nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Likewise.
30719 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
30720 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
30721 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
30722 * sysdeps/posix/getaddrinfo.c (__nss_hosts_database): Likewise.
30723 * nss/getXXent.c (INTERNAL (REENTRANT_GETNAME)): Add
30724 attribute_hidden.
30725 * nss/nsswitch.c (__nss_database_custom): Define only if
30726 USE_NSCD is defined.
30727 (__nss_configure_lookup): Use __nss_database_custom only if
30728 USE_NSCD is defined.
30729 * nss/nsswitch.h (__nss_database_custom): Declare only if
30730 USE_NSCD is defined. Add attribute_hidden.
30731 (__nss_setent): Add attribute_hidden.
30732 (__nss_endent): Likewise.
30733 (__nss_getent_r): Likewise.
30734 (__nss_getent): Likewise.
30735 (DEFINE_DATABASE): Declare __nss_##arg##_database.
30736
30737 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30738
30739 [BZ #18822]
30740 * sysdeps/unix/sysv/linux/i386/glob64.c (__old_glob64): Add
30741 libc_hidden_proto and libc_hidden_def.
30742
30743 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30744
30745 [BZ #18822]
30746 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_readdir64):
30747 Add libc_hidden_proto.
30748 * sysdeps/unix/sysv/linux/i386/readdir64.c (__old_readdir64):
30749 Add libc_hidden_def.
30750
30751 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30752
30753 [BZ #21974]
30754 * gmon/Makefile (routines): Remove bb_init_func and
30755 bb_exit_func.
30756 (elide-routines.os): Removed.
30757 * gmon/bb_exit_func.c: Likewise.
30758 * gmon/bb_init_func.c: Likewise.
30759 * include/sys/gmon.h (__bb): Likewise.
30760 (__bb_init_func): Likewise.
30761 (__bb_exit_func): Likewise.
30762 * sysdeps/alpha/bb_init_func.S: Likewise.
30763
30764 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30765
30766 * debug/longjmp_chk.c (____longjmp_chk): Moved to ...
30767 * include/setjmp.h (____longjmp_chk): Here. Add
30768 attribute_hidden.
30769
30770 2017-08-19 H.J. Lu <hongjiu.lu@intel.com>
30771
30772 [BZ #18822]
30773 * sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE2): Add
30774 attribute_hidden.
30775 (__strspn_sse2): Likewise.
30776
30777 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30778
30779 * sysdeps/generic/not-cancel.h (close_not_cancel): Remove macro.
30780 (close_not_cancel_no_status): Likewise.
30781 (__close_nocancel): New macro.
30782 (__close_nocancel_nostatus): Likewise.
30783 * sysdeps/unix/sysv/linux/not-cancel.h (__close_nocancel): Remove
30784 macro.
30785 (close_not_cancel): Likewise.
30786 (close_not_cancel_no_status): Likewise.
30787 (__close_nocancel): New prototype.
30788 (__close_nocancel_nostatus): New function.
30789 * sysdeps/unix/sysv/linux/close.c (__close_nocancel): New function.
30790 * catgets/open_catalog.c (__open_catalog): Replace
30791 close_not_cancel{_no_status) with __close_nocancel{_nostatus}.
30792 * gmon/gmon.c (write_gmon): Likewise.
30793 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
30794 * intl/loadmsgcat.c (close): Likewise.
30795 * io/ftw.c (open_dir_stream): Likewise.
30796 (ftw_startup): Likewise.
30797 * libio/fileops.c (_IO_file_open): Likewise.
30798 (_IO_file_close_mmap): Likewise.
30799 (_IO_file_close): Likewise.
30800 * libio/iopopen.c (_IO_dup2): Likewise.
30801 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
30802 * locale/loadlocale.c (_nl_load_locale): Likewise.
30803 * login/utmp_file.c (pututline_file): Likewise.
30804 (endutent_file): Likewise.
30805 * misc/daemon.c (daemon): Likewise.
30806 * nscd/nscd_getai.c (__nscd_getai): Likewise.
30807 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
30808 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
30809 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
30810 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
30811 * nscd/nscd_helper.c (open_socket): Likewise.
30812 (__nscd_open_socket): Likewise.
30813 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
30814 * nscd/nscd_netgroup.c (__nscd_setnetgrent): Likewise.
30815 (__nscd_innetgr): Likewise.
30816 * nss/nss_db/db-open.c (internal_setent): Likewise.
30817 * resolv/res-close.c (__res_iclose): Likewise.
30818 * sunrpc/pm_getmaps.c (pmap_getmaps): Likewise.
30819 * sysdeps/posix/closedir.c (__closedir): Likewise.
30820 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Likewise.
30821 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
30822 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
30823 (opendir_tail): Likewise.
30824 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
30825 * sysdeps/unix/sysv/linux/check_native.c (__check_native): Likewise.
30826 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
30827 * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
30828 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
30829 (gethostid): Likewise.
30830 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30831 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30832 Likewise.
30833 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
30834 * sysdeps/unix/sysv/linux/grantpt.c (close_all_fds): Likewise.
30835 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30836 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30837 Likewise.
30838 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Likewise.
30839 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps): Likewise.
30840 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30841 Likewise.
30842 * sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink): Likewise.
30843 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30844 Likewise.
30845 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
30846 Likewise.
30847 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
30848 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30849 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
30850 __close_nocancel.
30851
30852 * sysdeps/generic/not-cancel.h (openat_not_cancel): Remove macro.
30853 (openat_not_cancel_3): Likewise.
30854 (openat64_not_cancel_3): Likewise).
30855 (openat_not_cancel_3): Likewise).
30856 * sysdeps/unix/sysv/linux/not-cancel.h (openat_not_cancel): Remove
30857 macro.
30858 (openat_not_cancel_3): Likewise.
30859 (openat64_not_cancel): Likewise.
30860 (openat64_not_cancel_3): Likewise.
30861 * sysdeps/unix/sysv/linux/openat.c (__openat_nocancel): New function.
30862 * sysdeps/unix/sysv/linux/openat64.c (__openat64_nocancel): Likewise.
30863 * io/ftw.c (open_dir_stream): Replace openat{64}_not_cancel{_3} with
30864 __open{64}_nocancel.
30865 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
30866 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
30867 * sysdeps/posix/opendir.c (__opendirat): Likewise.
30868
30869 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30870
30871 [BZ #18822]
30872 * include/argz.h (__argz_create_sep): New function prototype.
30873 (__argz_append): Likewise.
30874 (__argz_add): Likewise.
30875 (__argz_add_sep): Likewise.
30876 (__argz_delete): Likewise.
30877 (__argz_insert): Likewise.
30878 (__argz_replace): Likewise.
30879 * string/argz.h (__argz_create_sep): Removed.
30880 (__argz_append): Likewise.
30881 (__argz_add): Likewise.
30882 (__argz_add_sep): Likewise.
30883 (__argz_delete): Likewise.
30884 (__argz_insert): Likewise.
30885 (__argz_replace): Likewise.
30886
30887 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30888
30889 * elf/elf.h (NT_GNU_PROPERTY_TYPE_0): New.
30890 (NOTE_GNU_PROPERTY_SECTION_NAME): Likewise.
30891 (GNU_PROPERTY_STACK_SIZE): Likewie.
30892 (GNU_PROPERTY_NO_COPY_ON_PROTECTED): Likewie.
30893 (GNU_PROPERTY_LOPROC): Likewise.
30894 (GNU_PROPERTY_HIPROC): Likewise.
30895 (GNU_PROPERTY_LOUSER): Likewise.
30896 (GNU_PROPERTY_HIUSER): Likewise.
30897 (GNU_PROPERTY_X86_ISA_1_USED): Likwise.
30898 (GNU_PROPERTY_X86_ISA_1_NEEDED): Likwise.
30899 (GNU_PROPERTY_X86_FEATURE_1_AND): Likwise.
30900 (GNU_PROPERTY_X86_ISA_1_486): Likwise.
30901 (GNU_PROPERTY_X86_ISA_1_586): Likwise.
30902 (GNU_PROPERTY_X86_ISA_1_686): Likwise.
30903 (GNU_PROPERTY_X86_ISA_1_SSE): Likwise.
30904 (GNU_PROPERTY_X86_ISA_1_SSE2): Likwise.
30905 (GNU_PROPERTY_X86_ISA_1_SSE3): Likwise.
30906 (GNU_PROPERTY_X86_ISA_1_SSSE3): Likwise.
30907 (GNU_PROPERTY_X86_ISA_1_SSE4_1): Likwise.
30908 (GNU_PROPERTY_X86_ISA_1_SSE4_2): Likwise.
30909 (GNU_PROPERTY_X86_ISA_1_AVX): Likwise.
30910 (GNU_PROPERTY_X86_ISA_1_AVX2): Likwise.
30911 (GNU_PROPERTY_X86_ISA_1_AVX512F): Likwise.
30912 (GNU_PROPERTY_X86_ISA_1_AVX512CD): Likwise.
30913 (GNU_PROPERTY_X86_ISA_1_AVX512ER): Likwise.
30914 (GNU_PROPERTY_X86_ISA_1_AVX512PF): Likwise.
30915 (GNU_PROPERTY_X86_ISA_1_AVX512VL): Likwise.
30916 (GNU_PROPERTY_X86_ISA_1_AVX512DQ): Likwise.
30917 (GNU_PROPERTY_X86_ISA_1_AVX512BW): Likwise.
30918 (GNU_PROPERTY_X86_FEATURE_1_IBT): Likwise.
30919 (GNU_PROPERTY_X86_FEATURE_1_SHSTK): Likwise.
30920
30921 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30922
30923 * misc/sys/cdefs.h (__HAVE_GENERIC_SELECTION): Define to 0, if
30924 in C++ mode.
30925
30926 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30927
30928 [BZ #21930]
30929 * math/math.h (isinf): Check if in C or C++ mode before using
30930 __builtin_types_compatible_p, since this is a C mode feature.
30931
30932 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30933
30934 * sysdeps/generic/not-cancel.h (write_not_cancel): Remove macro.
30935 (__write_nocancel): New macro.
30936 * sysdeps/unix/sysv/linux/not-cancel.h (__write_nocancel):
30937 Rewrite as a function prototype.
30938 (write_not_cancel): Remove macro.
30939 * sysdeps/unix/sysv/linux/write.c (__write_nocancel): New function.
30940 * gmon/gmon.c (ERR): Replace write_not_cancel with __write_nocancel.
30941 (write_gmon): Likewise.
30942 * libio/fileops.c (_IO_new_file_write): Likewise.
30943 * login/utmp_file.c (pututline_file): Likewise.
30944 (updwtmp_file): Likewise.
30945 * stdio-common/psiginfo.c (psiginfo): Likewise.
30946 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
30947 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
30948 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30949 Likewise.
30950 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
30951 Likewise.
30952
30953 * sysdeps/generic/not-cancel.h (read_not_cancel): Remove macro.
30954 (__read_nocancel): New macro.
30955 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
30956 __read_nocancel.
30957 * sysdeps/unix/sysv/linux/not-cancel.h (__read_nocancel): Remove
30958 macro.
30959 (__read_nocancel): New prototype.
30960 * sysdeps/unix/sysv/linux/read.c (__read_nocancel): New function.
30961 * catgets/open_catalog.c (__open_catalog): Replace read_not_cancel
30962 with __read_nocancel.
30963 * intl/loadmsgcat.c (read): Likewise.
30964 * libio/fileops.c (_IO_file_read): Likewise.
30965 * locale/loadlocale.c (_nl_load_locale): Likewise.
30966 * login/utmp_file.c (getutent_r_file): Likewise.
30967 (internal_getut_r): Likewise.
30968 (getutline_r_file): Likewise.
30969 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
30970 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
30971 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30972 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30973 Likewise.
30974 * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Likewise.
30975 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30976 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30977 Likewise.
30978 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30979 Likewise.
30980 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30981 Likewise.
30982 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30983 Likewise.
30984 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30985
30986 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30987
30988 [BZ #21966]
30989 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h
30990 (IFUNC_SELECTOR): Don't use the AVX2 version if FMA isn't
30991 usable.
30992
30993 2017-08-17 DJ Delorie <dj@redhat.com>
30994
30995 * bug17079.c: Update to new test harness.
30996 * test-digits-dots.c: Likewise.
30997 * test-netdb.c: Likewise.
30998 * tst-field.c: Likewise.
30999 * tst-nss-getpwent.c: Likewise.
31000 * tst-nss-static.c: Likewise.
31001 * tst-nss-test1.c: Likewise.
31002 * tst-nss-test2.c: Likewise.
31003 * tst-nss-test3.c: Likewise.
31004 * tst-nss-test4.c: Likewise.
31005 * tst-nss-test5.c: Likewise.
31006
31007 2017-08-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31008
31009 * sysdeps/generic/not-cancel.h (open_not_cancel): Remove macro.
31010 (open_not_cancel_2): Likewise.
31011 (open_nocancel): New macro.
31012 (open64_nocancel): Likewise.
31013 * sysdeps/unix/sysv/linux/not-cancel.h (open_not_cancel): Remove macro.
31014 (open_not_cancel_2): Likewise.
31015 (__open_nocancel): New prototype.
31016 (__open64_nocancel): Likewise.
31017 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
31018 __open_nocancel.
31019 * sysdeps/unix/sysv/linux/open.c (__open_nocancel): New function.
31020 * sysdeps/unix/sysv/linux/open64.c (__open64_nocancel): Likewise.
31021 * catgets/open_catalog.c (__open_catalog): Replace open_not_cancel{_2}
31022 with __open_nocancel.
31023 * csu/check_fds.c (check_one_fd): Likewise.
31024 * gmon/gmon.c (write_gmon): Likewise.
31025 * iconv/gconv_cache.c (__gconv_load_cached): Likewise.
31026 * intl/loadmsgcat.c (open): Likewise.
31027 * libio/fileops.c (_IO_file_open): Likewise.
31028 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
31029 * locale/loadlocale.c (_nl_load_locale): Likewise.
31030 * login/utmp_file.c (setutent_file): Likewise.
31031 * misc/daemon.c (daemon): Likewise.
31032 * nss/nss_db/db-open.c (internal_setent): Likewise.
31033 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
31034 * sysdeps/posix/libc_fatal.c (__libc_message): Likewise.
31035 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
31036 (__opendir): Likewise.
31037 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
31038 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
31039 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
31040 (gethostid): Likewise.
31041 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
31042 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
31043 Likewise.
31044 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
31045 * sysdeps/unix/sysv/linux/grantpt.c (__close_all_fds): Likewise.
31046 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
31047 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
31048 Likewise.
31049 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
31050 Likewise.
31051 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
31052 Likewise.
31053 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
31054 Likewise.
31055 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
31056 Likewise.
31057 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
31058 Likewise.
31059 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
31060 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
31061
31062 2017-08-17 Wilco Dijkstra <wdijkstr@arm.com>
31063
31064 * benchtests/bench-skeleton.c (main): Add support for
31065 latency benchmarking.
31066 * benchtests/scripts/bench.py: Add support for latency benchmarking.
31067
31068 2017-08-17 H.J. Lu <hongjiu.lu@intel.com>
31069
31070 * Makeconfig (+link-pie-before-libc): Add CRT-* hook to override
31071 the startup object.
31072
31073 2017-08-17 Florian Weimer <fweimer@redhat.com>
31074
31075 * include/sys/socket.h (__opensock): Remove internal_function.
31076 * socket/opensock.c (__opensock): Likewise.
31077 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Likewise.
31078
31079 2017-08-16 Joseph Myers <joseph@codesourcery.com>
31080
31081 [BZ #21944]
31082 * signal/bits/types/__sigval_t.h: New file.
31083 * signal/Makefile (headers): Add bits/types/__sigval_t.h.
31084 * signal/bits/types/sigval_t.h: Include <bits/types/__sigval_t.h>
31085 and define sigval_t using __sigval_t.
31086 * include/bits/types/__sigval_t.h: New file.
31087 * bits/types/sigevent_t.h: Include <bits/types/__sigval_t.h>
31088 instead of <bits/types/__sigval_t.h>.
31089 (struct sigevent): Use __sigval_t instead of sigval_t.
31090 * bits/types/siginfo_t.h: Include <bits/types/__sigval_t.h>
31091 instead of <bits/types/__sigval_t.h>.
31092 (siginfo_t): Use __sigval_t instead of sigval_t.
31093 * sysdeps/unix/sysv/linux/bits/types/sigevent_t.h: Include
31094 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
31095 (struct sigevent): Use __sigval_t instead of sigval_t.
31096 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h: Include
31097 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
31098 (siginfo_t): Use __sigval_t instead of sigval_t.
31099 * signal/signal.h [__USE_MISC]: Include <bits/types/sigval_t.h>.
31100
31101 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31102
31103 * NEWS: Remove "[Add new features here]" for 2.27.
31104
31105 2017-08-16 Joseph Myers <joseph@codesourcery.com>
31106
31107 * sysdeps/unix/sysv/linux/sh/localplt.data: Allow abort in
31108 libc.so.
31109
31110 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31111
31112 * NEWS: Mention x86-64 FMA optimization.
31113
31114 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31115
31116 [BZ #21912]
31117 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
31118 Add e_expf-fma.
31119 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: New file.
31120 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Likewise.
31121 * sysdeps/x86_64/fpu/multiarch/ifunc-fma.h: Likewise.
31122
31123 2017-08-16 Andreas Schwab <schwab@suse.de>
31124
31125 [BZ #16750]
31126 CVE-2009-5064
31127 * elf/ldd.bash.in: Never run file directly.
31128
31129 2017-08-15 H.J. Lu <hongjiu.lu@intel.com>
31130
31131 [BZ #21955]
31132 * sysdeps/x86_64/fpu/e_expf.S (L(SP_RANGE)): Aligned to 8 bytes.
31133 (L(SP_INF_0)): Likewise.
31134
31135 2017-08-15 Florian Weimer <fweimer@redhat.com>
31136
31137 * gmon/Makefile (tests-special): Add tst-gmon-prof only if
31138 run-built-tests.
31139
31140 2017-08-15 Florian Weimer <fweimer@redhat.com>
31141
31142 Remove BROKEN_THREAD_SIGNALS support for LinuxThreads.
31143 * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): Remove
31144 BROKEN_THREAD_SIGNALS code.
31145 * sysdeps/ppthread/aio_misc.h (struct waitlist, struct
31146 request_list): Remove caller_pid member used for
31147 BROKEN_THREAD_SIGNALS.
31148 [BROKEN_THREAD_SIGNALS] (__aio_notify_only): Remove declaration.
31149 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
31150 Remove BROKEN_THREAD_SIGNALS support.
31151 * sysdeps/pthread/aio_suspend.c (aio_suspend): Likewise.
31152 * sysdeps/pthread/lio_listio.c (lio_listio_internal): Likewise.
31153
31154 2017-08-15 Florian Weimer <fweimer@redhat.com>
31155
31156 * gmon/Makefile (tests): Add tst-gmon.
31157 (CFLAGS-tst-gmon.c, LDFLAGS-tst-gmon, CRT-tst-gmon, tst-gmon-ENV):
31158 Set.
31159 (tests-special): Add tst-gmon-prof.out.
31160 (tst-gmon.out): Depend on clean-tst-gmon-data.
31161 (clean-tst-gmon-data, tst-gmon-gprof.out): New targets.
31162 * gmon/tst-gmon.c, gmon/tst-gmon-gprof.sh: New files.
31163 * Makeconfig (+link-before-libc): Add CRT-* hook to override the
31164 startup object.
31165 * aclocal.m4 (GPROF): Set and substitute.
31166 * config.amke.in (GPROF): Set.
31167 * configure: Regenerate.
31168
31169 2017-08-15 Gustavo Romero <gromero@linux.vnet.ibm.com>
31170
31171 * elf/elf.h A (NT_PPC_TAR): New macro.
31172 (NT_PPC_PPR): Likewise.
31173 (NT_PPC_DSCR): Likewise.
31174 (NT_PPC_EBB): Likewise.
31175 (NT_PPC_PMU): Likewise.
31176 (NT_PPC_TM_CGPR): Likewise.
31177 (NT_PPC_TM_CFPR): Likewise.
31178 (NT_PPC_TM_CVMX): Likewise.
31179 (NT_PPC_TM_CVSX): Likewise.
31180 (NT_PPC_TM_SPR): Likewise.
31181 (NT_PPC_TM_CTAR): Likewise.
31182 (NT_PPC_TM_CPPR): Likewise.
31183 (NT_PPC_TM_CDSCR): Likewise.
31184
31185 2017-08-15 Florian Weimer <fweimer@redhat.com>
31186
31187 * sysdeps/i386/machine-gmon.h (mcount_internal): Declare with
31188 regparm (2) instead of internal_function.
31189 (_MCOUNT_DECL): Adjust.
31190
31191 2017-08-15 Stefan Liebler <stli@linux.vnet.ibm.com>
31192
31193 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z14.
31194 * sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.
31195
31196 2017-08-14 Joseph Myers <joseph@codesourcery.com>
31197
31198 * conform/data/sys/wait.h-data (si_value): Do not expect for
31199 XPG42.
31200
31201 2017-08-14 Florian Weimer <fweimer@redhat.com>
31202
31203 [BZ #21962]
31204 NSS: Create stubs for accidentally exported lookup functions.
31205 * grp/initgroups.c (__nss_group_lookup, __nss_lookup_function):
31206 Remove declaration.
31207 * inet/ether_hton.c (__nss_ethers_lookup): Likewise.
31208 (ether_hostton): Call __nss_ethers_lookup2 instead.
31209 * inet/ether_ntoh.c (__nss_ethers_lookup): Remove declaration.
31210 (ether_ntohost): Call __nss_ethers_lookup2 instead.
31211 * inet/getnetgrent_r.c (__nss_netgroup_lookup): Remove declaration.
31212 (setup): Call __nss_netgroup_lookup2 instead.
31213 * nss/Makefile (routines): Add compat-lookup.
31214 * nss/Versions (GLIBC_2.27): Add symbol version.
31215 * nss/XXX-lookup (DB_LOOKUP_FCT): Remove declaration. Now provided by <nsswitch.h>.
31216 (DB_COMPAT_FCT): Remove.
31217 * nss/compat-lookup.c: New file.
31218 * nss/nsswitch.h: Generate __nss_*_lookup2 function prototypes
31219 from databases.def.
31220 * nss/service-lookup.c (NO_COMPAT): Remove definition.
31221 * sunrpc/netname.c (__nss_publickey_lookup): Remove declaration.
31222 (netname2user): Call __nss_publickey_lookup2 instead.
31223 * sunrpc/publickey.c (__nss_publickey_lookup): Remove declaration.
31224 (getpublickey, getsecretkey): Call __nss_publickey_lookup2
31225 instead.
31226
31227 2017-08-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31228 Sergei Trofimovich <slyfox@inbox.ru>
31229
31230 [BZ #21908]
31231 * sysdeps/unix/sysv/linux/m68k/mmap_internal.h (MMAP2_PAGE_SHIFT):
31232 Rename to MMAP2_PAGE_UNIT.
31233 * sysdeps/unix/sysv/linux/mmap.c: Include mmap_internal iff
31234 __OFF_T_MATCHES_OFF64_T is not defined.
31235 * sysdeps/unix/sysv/linux/mmap_internal.h (page_unit): Declare as
31236 uint64_t.
31237 (MMAP2_PAGE_UNIT) [MMAP2_PAGE_UNIT == -1]: Redefine to page_unit.
31238 (page_unit) [MMAP2_PAGE_UNIT != -1]: Remove definition.
31239
31240 2017-08-14 Florian Weimer <fweimer@redhat.com>
31241
31242 i386: Do not set internal_function.
31243 * config.h.in (USE_REGPARMS, internal_function): Remove.
31244 * sysdeps/i386/configure.ac (USE_REGPARMS): Likewise.
31245 * sysdeps/i386/configure (USE_REGPARMS): Likewise.
31246
31247 2017-08-14 Florian Weimer <fweimer@redhat.com>
31248
31249 * elf/dl-init.c (_dl_init): Remove internal_function.
31250 * sysdeps/generic/ldsodefs.h (_dl_init): Likewise.
31251 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to _dl_init.
31252
31253 2017-08-14 Florian Weimer <fweimer@redhat.com>
31254
31255 * elf/rtld.c (_dl_start): Remove internal_function.
31256 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to
31257 _dl_start.
31258
31259 2017-08-14 Florian Weimer <fweimer@redhat.com>
31260
31261 * elf/dl-fini.c (_dl_fini): Remove internal_function
31262 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
31263
31264 2017-08-14 H.J. Lu <hongjiu.lu@intel.com>
31265
31266 * sysdeps/x86/cpu-features.h (bit_cpu_IBT): New.
31267 (bit_cpu_SHSTK): Likewise.
31268 (index_cpu_IBT): Likewise.
31269 (index_cpu_SHSTK): Likewise.
31270 (reg_IBT): Likewise.
31271 (reg_SHSTK): Likewise.
31272 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
31273 Handle index_cpu_IBT and index_cpu_SHSTK.
31274
31275 2017-08-14 Mike FABIAN <mfabian@redhat.com>
31276
31277 [BZ #19982]
31278 * po/fr.po: Fix spelling mistake.
31279
31280 2017-08-13 Florian Weimer <fweimer@redhat.com>
31281
31282 * elf/dl-addr.c (_dl_addr): Remove internal_function.
31283 * elf/dl-error-skeleton.c (_dl_signal_error, _dl_signal_cerror)
31284 (_dl_catch_error, _dl_receive_error): Likewise.
31285 * elf/dl-open.c (_dl_find_dso_for_object): Likewise.
31286 * elf/dl-tls.c (_dl_allocate_tls_init, _dl_allocate_tls)
31287 (_dl_deallocate_tls): Likewise.
31288 * include/dlfcn.h (_dl_addr): Likewise.
31289 * sysdeps/generic/ldsodefs.h (_dl_signal_error, _dl_signal_cerror)
31290 (_dl_catch_error, _dl_receive_error, _dl_find_dso_for_object)
31291 (_dl_allocate_tls_init, _dl_allocate_tls, _dl_deallocate_tls):
31292 Likewise.
31293
31294 2017-08-13 Florian Weimer <fweimer@redhat.com>
31295
31296 * include/stdlib.h: (__strtof_nan, __strtod_nan, __strtold_nan)
31297 (__wcstof_nan, __wcstod_nan, __wcstold_nan): Remove
31298 internal_function.
31299 * stdlib/sttod_nan_main.c (STRTOD_NAN): Likewise.
31300
31301 2017-08-13 Florian Weimer <fweimer@redhat.com>
31302
31303 * elf/dl-support.c (_dl_make_stack_executable_hook): Remove
31304 internal_function.
31305 * nptl/allocatestack.c (__make_stacks_executable): Likewise.
31306 * nptl/pthreadP.h (__make_stacks_executable): Likewise.
31307 * sysdeps/generic/ldsodefs.h (_rtld_global): Remove
31308 internal_function from _dl_make_stack_executable_hook member.
31309 (_dl_make_stack_executable): Remove internal_function.
31310 * sysdeps/mach/hurd/dl-execstack.c (_dl_make_stack_executable):
31311 Likewise.
31312 * sysdeps/unix/sysv/linux/dl-execstack.c
31313 (_dl_make_stack_executable): Likewise.
31314
31315 2017-08-13 Florian Weimer <fweimer@redhat.com>
31316
31317 * sysdeps/unix/sysv/linux/netlinkaccess.h
31318 (__netlink_assert_response): Remove internal_function.
31319 * sysdeps/unix/sysv/linux/netlink_assert_response.c
31320 (__netlink_assert_response): Likewise.
31321
31322 2017-08-13 Florian Weimer <fweimer@redhat.com>
31323
31324 * include/rpc/pmap_clnt.h (__libc_rpc_getport): Remove
31325 internal_function.
31326 * sunrpoc/pm_getport.c (__libc_rpc_getport): Likewise.
31327
31328 2017-08-13 Florian Weimer <fweimer@redhat.com>
31329
31330 * grp/grp-merge.h (__copy_grp, __merge_grp): Remove
31331 internal_function.
31332 * grp/grp-merge.c (__copy_grp, __merge_grp): Likewise.
31333 * inet/netgroup.h (__internal_setnetgrent)
31334 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
31335 * inet/getnetgrent_r.c (__internal_setnetgrent)
31336 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
31337 * nss/XXX-lookup.c (DB_LOOKUP_FCT, DB_COMPAT_FCT): Likewise.
31338 * nss/getXXbyYY_r.c (DB_LOOKUP_FCT): Likewise.
31339 * nss/getXXent_r.c (DB_LOOKUP_FCT): Likewise.
31340 * nss/nsswitch.h (db_lookup_function): Likewise.
31341
31342 2017-08-13 Florian Weimer <fweimer@redhat.com>
31343
31344 * debug/fortify_fail.c (__fortify_fail, __fortify_fail_abort):
31345 Remove internal_function.
31346 * include/stdio.h (__fortify_fail, __fortify_fail_abort): Likewise.
31347 * sysdeps/mach/hurd/i386/____longjmp_chk.S (CALL_FAIL): Pass
31348 message argument on the stack.
31349 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S (CALL_FAIL):
31350 Likeweise.
31351
31352 2017-08-12 Mike FABIAN <mfabian@redhat.com>
31353
31354 Adapt test case data to the changes in the thousands
31355 separators.
31356
31357 [BZ #20756]
31358 * localedata/tst-langinfo.sh: Adapt test case data.
31359 * stdlib/tst-strfmon_l.c: Likewise.
31360 * stdlib/tst-strtod4.c: Likewise.
31361 * stdlib/tst-strtod5i.c: Likewise.
31362
31363 2017-08-11 Florian Weimer <fweimer@redhat.com>
31364
31365 [BZ #21242]
31366 * assert/assert.h [__GNUC__ && !__STRICT_ANSI__] (assert):
31367 Suppress pedantic warning resulting from statement expression.
31368 (__ASSERT_FUNCTION): Add missing __extension__.
31369
31370 2017-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
31371
31372 * benchtests/bench-memmove-large.c: Print output in JSON
31373 format.
31374 * benchtests/bench-memmove.c: Likewise.
31375
31376 * benchtests/bench-memccpy.c (do_one_test): Remove checks.
31377 * benchtests/bench-memchr.c (do_one_test): Likewise.
31378 * benchtests/bench-memcpy-large.c (do_one_test): Likewise.
31379 * benchtests/bench-memcpy.c (do_one_test): Likewise.
31380 * benchtests/bench-memmove-large.c (do_one_test): Likewise.
31381 * benchtests/bench-memmove.c (do_one_test): Likewise.
31382 * benchtests/bench-memset-large.c (do_one_test): Likewise.
31383 * benchtests/bench-memset.c (do_one_test): Likewise.
31384 * benchtests/bench-string.h (test_init): Remove memsets.
31385
31386 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
31387
31388 * manual/lang.texi
31389 (Computing the Width of an Integer Data Type): Rename section to
31390 "Width of an Integer Type". Remove inaccurate statement regarding
31391 lack of C language facilities for determining width of integer
31392 types, and reorder content to improve flow and context of
31393 discussion.
31394
31395 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
31396
31397 * lang.texi (va_copy): Change standard from ISO to C99.
31398 (__va_copy): Add standard and header annotation.
31399 Update description for clarity of origins and current use.
31400
31401 2017-08-10 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
31402
31403 [BZ #21941]
31404 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrtf128): Since
31405 xssqrtqp requires operands to be in Vector Registers
31406 (Altivec/VMX), replace the register constraint 'wq' with 'v'.
31407 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c
31408 (__ieee754_sqrtf128): Likewise.
31409
31410 2017-08-10 Wilco Dijkstra <wdijkstr@arm.com>
31411
31412 * sysdeps/aarch64/memcmp.S (memcmp):
31413 Rewrite of optimized memcmp.
31414
31415 2017-08-10 Florian Weimer <fweimer@redhat.com>
31416
31417 Introduce ld.so exceptions.
31418 * sysdeps/generic/ldsodefs.h (struct dl_exception): Define.
31419 (_dl_exception_create, _dl_exception_create_format)
31420 (_dl_exception_free, _dl_signal_exception, _dl_signal_cexception)
31421 (_dl_catch_exception): Declare.
31422 (_dl_catch_error): Update comment.
31423 * elf/dl-error-skeleton.c (struct catch): Replace objname,
31424 errstring, malloced members with exception member.
31425 (_dl_out_of_memory): Remove.
31426 (fatal_error): New function, extracted from _dl_signal_error.
31427 (_dl_signal_exception, _dl_signal_cexception): New functions.
31428 (_dl_signal_error): Call _dl_exception_create to allocate an
31429 exception object.
31430 (_dl_catch_exception): New function, based on _dl_catch_error.
31431 (_dl_catch_error): Implement using _dl_catch_exception.
31432 * elf/dl-exception.c: New file.
31433 * elf/Makefile (dl-routines): Add dl-exception.
31434 (elide-routines.os): Likewise.
31435 * elf/Version (ld/GLIBC_PRIVATE): Add _dl_exception_create,
31436 _dl_exception_create_format, _dl_exception_free.
31437 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_catch_exception and
31438 _dl_signal_exception.
31439 * elf/dl-lookup.c (make_string): Remove.
31440 (_dl_lookup_symbol_x): Use _dl_exception_create_format,
31441 _dl_signal_cexception, _dl_exception_free.
31442 * elf/dl-open.c (_dl_open): Use _dl_catch_exception and
31443 _dl_signal_exception.
31444 * elf/dl-sym.c (do_sym): Likewise.
31445 * elf/dl-version.c (make_string): Remove.
31446 (match_symbol): Use _dl_exception_create_format,
31447 _dl_signal_cexception, _dl_exception_free.
31448 (_dl_check_map_versions): Likewise.
31449 * sysdeps/generic/localplt.data (ld.so): Add _dl_signal_exception,
31450 _dl_catch_exception.
31451 * sysdeps/unix/sysv/linux/aarch64/localplt.data (ld.so): Likewise.
31452 * sysdeps/unix/sysv/linux/alpha/localplt.data (ld.so): Likewise.
31453 * sysdeps/unix/sysv/linux/arm/localplt.data (ld.so): Likewise.
31454 * sysdeps/unix/sysv/linux/hppa/localplt.data (ld.so): Likewise.
31455 * sysdeps/unix/sysv/linux/i386/localplt.data (ld.so): Likewise.
31456 * sysdeps/unix/sysv/linux/ia64/localplt.data (ld.so): Likewise.
31457 * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Likewise.
31458 * sysdeps/unix/sysv/linux/microblaze/localplt.data (ld.so):
31459 Likewise.
31460 * sysdeps/unix/sysv/linux/nios2/localplt.data (ld.so): Likewise.
31461 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
31462 (ld.so): Likewise.
31463 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
31464 (ld.so): Likewise.
31465 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data (ld.so):
31466 Likewise.
31467 * sysdeps/unix/sysv/linux/s390/localplt.data (ld.so): Likewise.
31468 * sysdeps/unix/sysv/linux/sh/localplt.data (ld.so): Likewise.
31469 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data (ld.so):
31470 Likewise.
31471 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data (ld.so):
31472 Likewise.
31473 * sysdeps/x86_64/localplt.data (ld.so): Likewise.
31474
31475 2017-08-10 Florian Weimer <fweimer@redhat.com>
31476
31477 * inet/net-internal.h (__inet6_scopeid_pton): Remove
31478 attribute_hidden, internal_function.
31479 * inet/inet6_scopeid_pton.c (__inet6_scopeid_pton): Remove
31480 internal_function.
31481
31482 2017-08-10 Florian Weimer <fweimer@redhat.com>
31483
31484 * malloc/malloc.c (get_max_fast): Reimplement as an inline
31485 function which calls __builtin_unreachable.
31486
31487 2017-08-10 Mike FABIAN <mfabian@redhat.com>
31488
31489 * stdlib/tst-strfmon_l.c: Fix test cases to agree with the changes in
31490 Indian monetary formatting
31491 * stdlib/Makefile: Adapt list of locales needed for the tst-strfmon_l.c
31492 test cases.
31493
31494 2017-08-09 Dmitry V. Levin <ldv@altlinux.org>
31495
31496 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (enum __ptrace_request):
31497 Fix typo in comment.
31498
31499 [BZ #21928]
31500 * sysdeps/unix/sysv/linux/sys/ptrace.h (enum __ptrace_flags,
31501 PTRACE_SEIZE_DEVEL): Remove.
31502 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
31503 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
31504 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
31505 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
31506 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
31507
31508 2017-08-09 Joseph Myers <joseph@codesourcery.com>
31509
31510 * posix/bits/types.h (__qaddr_t): Remove.
31511
31512 [BZ #21457]
31513 * sysdeps/arm/sys/ucontext.h (__ctx): Move undefine further down.
31514 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31515 __glibc_reserved1.
31516 * sysdeps/generic/sys/ucontext.h (__ctx): New macro.
31517 (ucontext_t): Use __ctx with uc_flags.
31518 * sysdeps/i386/sys/ucontext.h (__ctx): Move undefine further down.
31519 (__ctxt): Likewise.
31520 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31521 __glibc_reserved1.
31522 * sysdeps/m68k/sys/ucontext.h (__ctx): Move undefine further down.
31523 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31524 __glibc_reserved1.
31525 * sysdeps/mips/sys/ucontext.h (__ctx): Move undefine further down.
31526 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31527 __glibc_reserved1.
31528 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__ctx): New
31529 macro.
31530 (ucontext_t): Use __ctx with uc_flags.
31531 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h (__ctx): New macro.
31532 (ucontext_t): Use __ctx with uc_flags.
31533 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h (__ctx): New macro.
31534 (ucontext_t): Use __ctx with uc_flags and uc_regspace.
31535 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h (__ctx): New macro.
31536 (ucontext_t): Use __ctx with uc_flags.
31537 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h (__ctx): Move
31538 undefine further down.
31539 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31540 __glibc_reserved1.
31541 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h (__ctx): Move
31542 undefine further down.
31543 (ucontext_t): Use __ctx with uc_flags.
31544 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h (__ctx): Move
31545 undefine further down.
31546 (ucontext_t): Use __ctx with uc_flags.
31547 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (ucontext_t): Use
31548 __ctx with uc_flags, uc_regs_ptr, uc_regs and uc_reg_space.
31549 Rename uc_pad to __glibc_reserved1.
31550 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__ctx): Move
31551 undefine further down.
31552 (ucontext_t): Use __ctx with uc_flags.
31553 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h (__ctx): Move undefine
31554 further down.
31555 (ucontext_t): Use __ctx with uc_flags.
31556 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (ucontext_t): Use
31557 __ctx with uc_flags.
31558 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h (__ctx): New macro.
31559 (ucontext_t): Use __ctx with uc_flags.
31560 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Use
31561 __ctx with uc_flags.
31562
31563 2017-08-09 Florian Weimer <fweimer@redhat.com>
31564
31565 [BZ #21932]
31566 * nss/getXXbyYY_r.c (REENTRANT_NAME): Call __resolv_context_put
31567 before early return.
31568
31569 2017-08-09 Andreas Schwab <schwab@suse.de>
31570
31571 [BZ #21041]
31572 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Update reference to
31573 renamed alias.
31574
31575 [BZ #21041]
31576 * nptl/Makefile (tests) [$(build-shared) = yes]: Add
31577 tst-compat-forwarder.
31578 (modules-names): Add tst-compat-forwarder-mod.
31579 ($(objpfx)tst-compat-forwarder): Depend on
31580 $(objpfx)tst-compat-forwarder-mod.so.
31581 * nptl/tst-compat-forwarder.c: New file.
31582 * nptl/tst-compat-forwarder-mod.c: New file.
31583
31584 2017-08-09 Siddhesh Poyarekar <siddhesh@sourceware.org>
31585
31586 * sysdeps/aarch64/multiarch/memcpy_falkor.S: Fix code style in
31587 comments.
31588
31589 * manual/tunables.texi (Tunable glibc.tune.cpu): Add falkor.
31590 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
31591 memcpy_falkor.
31592 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
31593 Bump.
31594 (__libc_ifunc_impl_list): Add __memcpy_falkor.
31595 * sysdeps/aarch64/multiarch/memcpy.c: Likewise.
31596 * sysdeps/aarch64/multiarch/memcpy_falkor.S: New file.
31597 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
31598 Add falkor.
31599 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_FALKOR):
31600 New macro.
31601
31602 2017-08-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31603
31604 [BZ #759]
31605 * manual/setjmp.texi (getcontex): Document uc_stack value
31606 compatibility differences.
31607
31608 2017-08-08 Joseph Myers <joseph@codesourcery.com>
31609
31610 * malloc/mcheck.c (old_free_hook): Use void * instead of __ptr_t.
31611 (old_malloc_hook): Likewise.
31612 (old_memalign_hook): Likewise.
31613 (old_realloc_hook): Likewise.
31614 (struct hdr): Likewise.
31615 (flood): Likewise.
31616 (freehook): Likewise.
31617 (mallochook): Likewise.
31618 (memalignhook): Likewise.
31619 (reallochook): Likewise.
31620 (mprobe): Likewise.
31621 * malloc/mtrace.c (mallwatch): Likewise.
31622 (tr_old_free_hook): Likewise.
31623 (tr_old_malloc_hook): Likewise.
31624 (tr_old_realloc_hook): Likewise.
31625 (tr_old_memalign_hook): Likewise.
31626 (tr_where): Likewise.
31627 (lock_and_info): Likewise.
31628 (tr_freehook): Likewise.
31629 (tr_mallochook): Likewise.
31630 (tr_reallochook): Likewise.
31631 (tr_memalignhook): Likewise.
31632 * misc/err.h [!__GNUC_VA_LIST] (__gnuc_va_list): Likewise.
31633 * misc/mmap.c (__mmap): Likewise.
31634 * misc/mmap64.c (__mmap64): Likewise.
31635 * misc/mprotect.c (__mprotect): Likewise.
31636 * misc/msync.c (msync): Likewise.
31637 * misc/munmap.c (__munmap): Likewise.
31638 * posix/posix_madvise.c (posix_madvise): Likewise.
31639 * socket/send.c (__send): Likewise.
31640 * socket/sendto.c (__sendto): Likewise.
31641 * socket/setsockopt.c (__setsockopt): Likewise.
31642 * string/memcmp.c (__ptr_t): Remove macro.
31643 (MEMCMP): Use void * instead of ptr_t.
31644 * string/memrchr.c (__ptr_t): Remove macro.
31645 (__memrchr): Use void * instead of ptr_t.
31646 * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Likewise.
31647 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
31648 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
31649 * sysdeps/mach/mprotect.c (__mprotect): Likewise.
31650 * sysdeps/mach/msync.c (msync): Likewise.
31651 * sysdeps/mach/munmap.c (__munmap): Likewise.
31652 * sysdeps/mips/bits/setjmp.h (struct __jmp_buf_internal_tag):
31653 Likewise.
31654 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
31655 * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
31656 * sysdeps/powerpc/powerpc32/power4/memcpy.S (memcpy): Likewise.
31657 * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Likewise.
31658 * sysdeps/powerpc/powerpc32/power6/memcpy.S (memcpy): Likewise.
31659 * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
31660 * sysdeps/powerpc/powerpc32/power7/memcpy.S (memcpy): Likewise.
31661 * sysdeps/powerpc/powerpc32/power7/mempcpy.S (__mempcpy):
31662 Likewise.
31663 * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
31664 * sysdeps/powerpc/powerpc64/memcpy.S (memcpy): Likewise.
31665 * sysdeps/powerpc/powerpc64/memset.S (memset): Likewise.
31666 * sysdeps/powerpc/powerpc64/power4/memcpy.S (memcpy): Likewise.
31667 * sysdeps/powerpc/powerpc64/power4/memset.S (memset): Likewise.
31668 * sysdeps/powerpc/powerpc64/power6/memcpy.S (memcpy): Likewise.
31669 * sysdeps/powerpc/powerpc64/power6/memset.S (memset): Likewise.
31670 * sysdeps/powerpc/powerpc64/power7/memcpy.S (memcpy): Likewise.
31671 * sysdeps/powerpc/powerpc64/power7/mempcpy.S (__mempcpy):
31672 Likewise.
31673 * sysdeps/powerpc/powerpc64/power7/memset.S (memset): Likewise.
31674 * sysdeps/powerpc/powerpc64/power8/memset.S (memset): Likewise.
31675 * sysdeps/tile/memcmp.c (__ptr_t): Remove macro.
31676 (MEMCMP): Use void * instead of ptr_t.
31677 * sysdeps/unix/sysv/linux/alpha/oldglob.c (old_glob_t): Likewise.
31678 * sysdeps/unix/sysv/linux/mmap.c (__mmap): Likewise.
31679
31680 2017-08-08 Florian Weimer <fweimer@redhat.com>
31681
31682 * sysdeps/posix/getaddrinfo.c (gaih_inet): Remove unreachable
31683 return statement.
31684
31685 2017-08-08 H.J. Lu <hongjiu.lu@intel.com>
31686
31687 [BZ #21913]
31688 * csu/libc-tls.c: Include <startup.h> first.
31689 (__libc_setup_tls): Call _startup_fatal instead of __libc_fatal.
31690 * elf/dl-tunables.c: Include <startup.h> first.
31691 * include/libc-symbols.h (BUILD_PIE_DEFAULT): New.
31692 * sysdeps/generic/startup.h: New file.
31693 * sysdeps/unix/sysv/linux/i386/startup.h: Likewise.
31694 * sysdeps/unix/sysv/linux/i386/brk.c [BUILD_PIE_DEFAULT != 0]
31695 (I386_USE_SYSENTER): New. Defined to 0.
31696
31697 2017-08-08 Andreas Schwab <schwab@suse.de>
31698
31699 [BZ #21041]
31700 * nptl/pt-longjmp.c (longjmp, siglongjmp): Don't use IFUNC resolver.
31701 * nptl/pt-system.c (system): Likewise.
31702
31703 2017-08-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31704
31705 [BZ #21780]
31706 * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of
31707 EOPNOTSUPP.
31708 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
31709 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
31710 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise.
31711 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
31712 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
31713 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
31714 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
31715
31716 2017-08-07 Joseph Myers <joseph@codesourcery.com>
31717
31718 [BZ #21899]
31719 * bits/sigaction.h (struct sigaction): Define sa_handler and
31720 sa_sigaction using union also for [__USE_XOPEN_EXTENDED].
31721 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31722 [__USE_XOPEN_EXTENDED].
31723 (SA_RESTART): Likewise.
31724 (SA_NODEFER): Likewise.
31725 (SA_RESETHAND): Likewise.
31726 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
31727 (struct sigaction): Define sa_handler and sa_sigaction using union
31728 also for [__USE_XOPEN_EXTENDED].
31729 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31730 [__USE_XOPEN_EXTENDED].
31731 (SA_RESTART): Likewise.
31732 (SA_NODEFER): Likewise.
31733 (SA_RESETHAND): Likewise.
31734 * sysdeps/unix/sysv/linux/bits/sigaction.h
31735 (struct sigaction): Define sa_handler and sa_sigaction using union
31736 also for [__USE_XOPEN_EXTENDED].
31737 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31738 [__USE_XOPEN_EXTENDED].
31739 (SA_RESTART): Likewise.
31740 (SA_NODEFER): Likewise.
31741 (SA_RESETHAND): Likewise.
31742 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h
31743 (struct sigaction): Define sa_handler and sa_sigaction using union
31744 also for [__USE_XOPEN_EXTENDED].
31745 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31746 [__USE_XOPEN_EXTENDED].
31747 (SA_RESTART): Likewise.
31748 (SA_NODEFER): Likewise.
31749 (SA_RESETHAND): Likewise.
31750 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h
31751 (struct sigaction): Define sa_handler and sa_sigaction using union
31752 also for [__USE_XOPEN_EXTENDED].
31753 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31754 [__USE_XOPEN_EXTENDED].
31755 (SA_RESTART): Likewise.
31756 (SA_NODEFER): Likewise.
31757 (SA_RESETHAND): Likewise.
31758 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
31759 (struct sigaction): Define sa_handler and sa_sigaction using union
31760 also for [__USE_XOPEN_EXTENDED].
31761 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31762 [__USE_XOPEN_EXTENDED].
31763 (SA_RESTART): Likewise.
31764 (SA_NODEFER): Likewise.
31765 (SA_RESETHAND): Likewise.
31766 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
31767 (struct sigaction): Define sa_handler and sa_sigaction using union
31768 also for [__USE_XOPEN_EXTENDED].
31769 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31770 [__USE_XOPEN_EXTENDED].
31771 (SA_RESTART): Likewise.
31772 (SA_NODEFER): Likewise.
31773 (SA_RESETHAND): Likewise.
31774 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
31775 (struct sigaction): Define sa_handler and sa_sigaction using union
31776 also for [__USE_XOPEN_EXTENDED].
31777 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31778 [__USE_XOPEN_EXTENDED].
31779 (SA_RESTART): Likewise.
31780 (SA_NODEFER): Likewise. Define directly rather than as alias.
31781 (SA_RESETHAND): Likewise.
31782 (SA_INTERRUPT): Define only for [__USE_MISC].
31783 (SA_NOMASK): Define as alias of SA_NODEFER, only for [__USE_MISC].
31784 (SA_ONESHOT): Define as alias of SA_RESETHAND, only for
31785 [__USE_MISC].
31786 (SA_STACK): Define only for [__USE_MISC].
31787 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h
31788 (struct sigaction): Define sa_handler and sa_sigaction using union
31789 also for [__USE_XOPEN_EXTENDED].
31790 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31791 [__USE_XOPEN_EXTENDED].
31792 (SA_RESTART): Likewise.
31793 (SA_NODEFER): Likewise.
31794 (SA_RESETHAND): Likewise.
31795 (SA_NOPTRACE): Define only for [__USE_MISC].
31796
31797 * catgets/catgets.c (catgets): Use uintN_t instead of u_intN_t.
31798 * catgets/catgetsinfo.h (struct catalog_obj): Likewise.
31799 (struct catalog_info): Likewise.
31800 * inet/htontest.c (lo): Likewise.
31801 (foo): Likewise.
31802 * inet/inet_lnaof.c (inet_lnaof): Likewise.
31803 * inet/inet_net.c (inet_network): Likewise.
31804 * inet/inet_netof.c (inet_netof): Likewise.
31805 * inet/rcmd.c (__ivaliduser): Likewise.
31806 (iruserok): Likewise.
31807 * locale/loadlocale.c (_nl_intern_locale_data): Likewise.
31808 * locale/programs/locale-spec.c (locale_special): Likewise.
31809 * nis/nis_findserv.c (struct findserv_req): Likewise.
31810 (__nis_findfastest_with_timeout): Likewise.
31811 * nss/test-netdb.c (test_network): Likewise.
31812 * resolv/inet_neta.c (inet_neta): Likewise.
31813 * resolv/ns_date.c (ns_datetosecs): Likewise.
31814 (SECS_PER_DAY): Likewise.
31815 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r):
31816 Likewise.
31817 * resolv/res_comp.c (__putlong): Likewise.
31818 (__putshort): Likewise.
31819 (_getlong): Likewise.
31820 (_getshort): Likewise.
31821 * resolv/res_debug.c (p_time): Likewise.
31822 (precsize_ntoa): Likewise.
31823 (precsize_aton): Likewise.
31824 (latlon2ul): Likewise.
31825 (loc_aton): Likewise.
31826 (loc_ntoa): Likewise.
31827 * resolv/res_hconf.c (struct netaddr): Likewise.
31828 (_res_hconf_reorder_addrs): Likewise.
31829 * sunrpc/clnt_tcp.c (clnttcp_call): Likewise.
31830 (clnttcp_control): Likewise.
31831 * sunrpc/clnt_udp.c (clntudp_call): Likewise.
31832 (clntudp_control): Likewise.
31833 * sunrpc/clnt_unix.c (clntunix_call): Likewise.
31834 (clntunix_control): Likewise.
31835 * sunrpc/pmap_rmt.c (clnt_broadcast): Likewise.
31836 * sunrpc/rpc/auth.h (union des_block): Likewise.
31837 * sunrpc/tst-udp-nonblocking.c (do_test): Likewise.
31838 * sunrpc/xdr_rec.c (struct rec_strm): Likewise.
31839 (xdrrec_create): Likewise.
31840 (xdrrec_endofrecord): Likewise.
31841 (flush_out): Likewise.
31842 * sunrpc/xdr_stdio.c (xdrstdio_getlong): Likewise.
31843 (xdrstdio_putlong): Likewise.
31844 * sysdeps/unix/sysv/linux/errqueue.h (struct sock_extended_err):
31845 Likewise.
31846
31847 * misc/sys/cdefs.h (__long_double_t): Remove.
31848 * stdio-common/printf_fp.c (__printf_fp_l): Use long double
31849 instead of __long_double_t,
31850 * stdlib/strfmon_l.c (__vstrfmon_l): Likewise.
31851
31852 2017-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
31853
31854 * benchtests/scripts/compare_strings.py: Avoid display error when
31855 running on a text terminal.
31856
31857 * benchtests/scripts/compare_strings.py (main): Add an
31858 optional -base option.
31859 (process_results): New argument base_func.
31860
31861 * benchtests/bench-memcpy.c (test_main): Use TEST_NAME instead of
31862 hardcoding memcpy.
31863 * benchtests/bench-memcpy-large.c (test_name): Likewise.
31864 * benchtests/bench-memcpy-random.c (test_name): Likewise.
31865
31866 2017-08-07 Andreas Schwab <schwab@suse.de>
31867
31868 * elf/Makefile ($(objpfx)tst-pathopt.out): Redirect output to target.
31869 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
31870 * intl/Makefile ($(objpfx)tst-gettext.out)
31871 ($(objpfx)tst-translit.out, $(objpfx)tst-gettext2.out)
31872 ($(objpfx)tst-gettext4.out, $(objpfx)tst-gettext6.out): Likewise.
31873 * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
31874 * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
31875 * nptl/Makefile ($(objpfx)tst-tls6.out): Likewise.
31876 * posix/Makefile ($(objpfx)globtest.out)
31877 ($(objpfx)wordexp-tst.out, $(objpfx)tst-getconf.out): Likewise.
31878 * stdio-common/Makefile ($(objpfx)tst-unbputc.out)
31879 ($(objpfx)tst-printf.out): Likewise.
31880 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out)
31881 ($(objpfx)tst-setcontext3.out): Likewise.
31882
31883 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
31884
31885 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
31886 Add e_exp-fma, e_log-fma, e_pow-fma, s_atan-fma, e_asin-fma,
31887 e_atan2-fma, s_sin-fma, s_tan-fma, mplog-fma, mpa-fma,
31888 slowexp-fma, slowpow-fma, sincos32-fma, doasin-fma, dosincos-fma,
31889 halfulp-fma, mpexp-fma, mpatan2-fma, mpatan-fma, mpsqrt-fma,
31890 and mptan-fma.
31891 (CFLAGS-doasin-fma.c): New.
31892 (CFLAGS-dosincos-fma.c): Likewise.
31893 (CFLAGS-e_asin-fma.c): Likewise.
31894 (CFLAGS-e_atan2-fma.c): Likewise.
31895 (CFLAGS-e_exp-fma.c): Likewise.
31896 (CFLAGS-e_log-fma.c): Likewise.
31897 (CFLAGS-e_pow-fma.c): Likewise.
31898 (CFLAGS-halfulp-fma.c): Likewise.
31899 (CFLAGS-mpa-fma.c): Likewise.
31900 (CFLAGS-mpatan-fma.c): Likewise.
31901 (CFLAGS-mpatan2-fma.c): Likewise.
31902 (CFLAGS-mpexp-fma.c): Likewise.
31903 (CFLAGS-mplog-fma.c): Likewise.
31904 (CFLAGS-mpsqrt-fma.c): Likewise.
31905 (CFLAGS-mptan-fma.c): Likewise.
31906 (CFLAGS-s_atan-fma.c): Likewise.
31907 (CFLAGS-sincos32-fma.c): Likewise.
31908 (CFLAGS-slowexp-fma.c): Likewise.
31909 (CFLAGS-slowpow-fma.c): Likewise.
31910 (CFLAGS-s_sin-fma.c): Likewise.
31911 (CFLAGS-s_tan-fma.c): Likewise.
31912 * sysdeps/x86_64/fpu/multiarch/doasin-fma.c: New file.
31913 * sysdeps/x86_64/fpu/multiarch/dosincos-fma.c: Likewise.
31914 * sysdeps/x86_64/fpu/multiarch/e_asin-fma.c: Likewise.
31915 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma.c: Likewise.
31916 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c: Likewise.
31917 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
31918 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c: Likewise.
31919 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Likewise.
31920 * sysdeps/x86_64/fpu/multiarch/ifunc-avx-fma4.h: Likewise.
31921 * sysdeps/x86_64/fpu/multiarch/ifunc-fma4.h: Likewise.
31922 * sysdeps/x86_64/fpu/multiarch/mpa-fma.c: Likewise.
31923 * sysdeps/x86_64/fpu/multiarch/mpatan-fma.c: Likewise.
31924 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma.c: Likewise.
31925 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
31926 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
31927 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma.c: Likewise.
31928 * sysdeps/x86_64/fpu/multiarch/mptan-fma.c: Likewise.
31929 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c: Likewise.
31930 * sysdeps/x86_64/fpu/multiarch/s_sin-fma.c: Likewise.
31931 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c: Likewise.
31932 * sysdeps/x86_64/fpu/multiarch/sincos32-fma.c: Likewise.
31933 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
31934 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
31935 * sysdeps/x86_64/fpu/multiarch/e_asin.c: Rewrite.
31936 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
31937 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
31938 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
31939 * sysdeps/x86_64/fpu/multiarch/e_pow.c: Likewise.
31940 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
31941 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
31942 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
31943
31944 2017-08-04 Joseph Myers <joseph@codesourcery.com>
31945
31946 * sysdeps/generic/math_private.h (__EXPR_FLT128): Remove macro.
31947 (min_of_type_f): New macro.
31948 (min_of_type_): Likewise.
31949 (min_of_type_l): Likewise.
31950 (min_of_type_f128): Likewise.
31951 (min_of_type): Define using __MATH_TG and taking an expression
31952 argument.
31953 (math_check_force_underflow): Pass expression instead of type to
31954 min_of_type.
31955 (math_check_force_underflow_nonneg): Likewise.
31956
31957 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31958
31959 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
31960 (LOAD_RTLD_GLOBAL_RO_RDX, HAS_FEATURE, LOAD_FUNC_GOT_EAX,
31961 HAS_CPU_FEATURE, HAS_ARCH_FEATURE): Removed.
31962
31963 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31964
31965 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
31966 bcopy-ia32, bzero-ia32, rawmemchr-ia32 memchr-ia32,
31967 memcmp-ia32, memcpy-ia32, memmove-ia32, mempcpy-ia32,
31968 memset-ia32, strcat-ia32, strchr-ia32, strrchr-ia32,
31969 strcpy-ia32, strcmp-ia32, strcspn-ia32, strpbrk-ia32,
31970 strspn-ia32, strlen-ia32, stpcpy-ia32, stpncpy-ia32,
31971 memcpy_chk-nonshared, mempcpy_chk-nonshared,
31972 memmove_chk-nonshared and memset_chk-nonshared
31973 * sysdeps/i386/i686/multiarch/bcopy-ia32.S: New file.
31974 * sysdeps/i386/i686/multiarch/bcopy.c: Likewise.
31975 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Likewise.
31976 * sysdeps/i386/i686/multiarch/bzero.c: Likewise.
31977 * sysdeps/i386/i686/multiarch/ifunc-memmove.h: Likewise.
31978 * sysdeps/i386/i686/multiarch/ifunc-memset.h: Likewise.
31979 * sysdeps/i386/i686/multiarch/ifunc-sse2-bsf.h: Likewise.
31980 * sysdeps/i386/i686/multiarch/ifunc-sse2-ssse3.h: Likewise.
31981 * sysdeps/i386/i686/multiarch/ifunc-sse2.h: Likewise.
31982 * sysdeps/i386/i686/multiarch/ifunc-sse4_2.h: Likewise.
31983 * sysdeps/i386/i686/multiarch/ifunc-ssse3-sse4_2.h: Likewise.
31984 * sysdeps/i386/i686/multiarch/memchr-ia32.S: Likewise.
31985 * sysdeps/i386/i686/multiarch/memchr.c: Likewise.
31986 * sysdeps/i386/i686/multiarch/memcmp-ia32.S: Likewise.
31987 * sysdeps/i386/i686/multiarch/memcmp.c: Likewise.
31988 * sysdeps/i386/i686/multiarch/memcpy-ia32.S: Likewise.
31989 * sysdeps/i386/i686/multiarch/memcpy.c: Likewise.
31990 * sysdeps/i386/i686/multiarch/memcpy_chk-nonshared.S: Likewise.
31991 * sysdeps/i386/i686/multiarch/memcpy_chk.c: Likewise.
31992 * sysdeps/i386/i686/multiarch/memmove-ia32.S: Likewise.
31993 * sysdeps/i386/i686/multiarch/memmove.c: Likewise.
31994 * sysdeps/i386/i686/multiarch/memmove_chk-nonshared.S: Likewise.
31995 * sysdeps/i386/i686/multiarch/memmove_chk.c: Likewise.
31996 * sysdeps/i386/i686/multiarch/mempcpy-ia32.S: Likewise.
31997 * sysdeps/i386/i686/multiarch/mempcpy.c: Likewise.
31998 * sysdeps/i386/i686/multiarch/mempcpy_chk-nonshared.S: Likewise.
31999 * sysdeps/i386/i686/multiarch/mempcpy_chk.c: Likewise.
32000 * sysdeps/i386/i686/multiarch/memrchr.c: Likewise.
32001 * sysdeps/i386/i686/multiarch/memset-ia32.S: Likewise.
32002 * sysdeps/i386/i686/multiarch/memset.c: Likewise.
32003 * sysdeps/i386/i686/multiarch/memset_chk-nonshared.S: Likewise.
32004 * sysdeps/i386/i686/multiarch/rawmemchr-ia32.S: Likewise.
32005 * sysdeps/i386/i686/multiarch/rawmemchr.c: Likewise.
32006 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
32007 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
32008 * sysdeps/i386/i686/multiarch/stpcpy.c: Likewise.
32009 * sysdeps/i386/i686/multiarch/stpncpy-ia32.S: Likewise.
32010 * sysdeps/i386/i686/multiarch/stpncpy.c: Likewise.
32011 * sysdeps/i386/i686/multiarch/strcasecmp.c: Likewise.
32012 * sysdeps/i386/i686/multiarch/strcasecmp_l.c: Likewise.
32013 * sysdeps/i386/i686/multiarch/strcat-ia32.S: Likewise.
32014 * sysdeps/i386/i686/multiarch/strcat.c: Likewise.
32015 * sysdeps/i386/i686/multiarch/strchr-ia32.S: Likewise.
32016 * sysdeps/i386/i686/multiarch/strchr.c: Likewise.
32017 * sysdeps/i386/i686/multiarch/strcmp-ia32.S: Likewise.
32018 * sysdeps/i386/i686/multiarch/strcmp.c: Likewise.
32019 * sysdeps/i386/i686/multiarch/strcpy-ia32.S: Likewise.
32020 * sysdeps/i386/i686/multiarch/strcpy.c: Likewise.
32021 * sysdeps/i386/i686/multiarch/strcspn-ia32.S: Likewise.
32022 * sysdeps/i386/i686/multiarch/strcspn.c: Likewise.
32023 * sysdeps/i386/i686/multiarch/strlen-ia32.S: Likewise.
32024 * sysdeps/i386/i686/multiarch/strlen.c: Likewise.
32025 * sysdeps/i386/i686/multiarch/strncase.c: Likewise.
32026 * sysdeps/i386/i686/multiarch/strncase_l.c: Likewise.
32027 * sysdeps/i386/i686/multiarch/strncat.c: Likewise.
32028 * sysdeps/i386/i686/multiarch/strncmp.c: Likewise.
32029 * sysdeps/i386/i686/multiarch/strncpy.c: Likewise.
32030 * sysdeps/i386/i686/multiarch/strnlen.c: Likewise.
32031 * sysdeps/i386/i686/multiarch/strpbrk-ia32.S: Likewise.
32032 * sysdeps/i386/i686/multiarch/strpbrk.c: Likewise.
32033 * sysdeps/i386/i686/multiarch/strrchr-ia32.S: Likewise.
32034 * sysdeps/i386/i686/multiarch/strrchr.c: Likewise.
32035 * sysdeps/i386/i686/multiarch/strspn-ia32.S: Likewise.
32036 * sysdeps/i386/i686/multiarch/strspn.c: Likewise.
32037 * sysdeps/i386/i686/multiarch/wcschr.c: Likewise.
32038 * sysdeps/i386/i686/multiarch/wcscmp.c: Likewise.
32039 * sysdeps/i386/i686/multiarch/wcscpy.c: Likewise.
32040 * sysdeps/i386/i686/multiarch/wcslen.c: Likewise.
32041 * sysdeps/i386/i686/multiarch/wcsrchr.c: Likewise.
32042 * sysdeps/i386/i686/multiarch/wmemcmp.c: Likewise.
32043 * sysdeps/i386/i686/multiarch/bcopy.S: Removed.
32044 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
32045 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
32046 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
32047 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
32048 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
32049 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
32050 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
32051 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
32052 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
32053 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
32054 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
32055 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
32056 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
32057 * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
32058 * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
32059 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
32060 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
32061 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
32062 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
32063 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
32064 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
32065 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
32066 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
32067 * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
32068 * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
32069 * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
32070 * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
32071 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
32072 * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
32073 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
32074 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
32075 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
32076 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
32077 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
32078 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
32079 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
32080 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
32081
32082 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32083
32084 * sysdeps/x86_64/fpu/multiarch/Makefile (libmvec-sysdep_routines)
32085 Add svml_d_cos2_core-sse2, svml_d_cos4_core-sse,
32086 svml_d_cos8_core-avx2, svml_d_exp2_core-sse2,
32087 svml_d_exp4_core-sse, svml_d_exp8_core-avx2,
32088 svml_d_log2_core-sse2, svml_d_log4_core-sse,
32089 svml_d_log8_core-avx2, svml_d_pow2_core-sse2,
32090 svml_d_pow4_core-sse, svml_d_pow8_core-avx2
32091 svml_d_sin2_core-sse2, svml_d_sin4_core-sse,
32092 svml_d_sin8_core-avx2, svml_d_sincos2_core-sse2,
32093 svml_d_sincos4_core-sse, svml_d_sincos8_core-avx2,
32094 svml_s_cosf16_core-avx2, svml_s_cosf4_core-sse2,
32095 svml_s_cosf8_core-sse, svml_s_expf16_core-avx2,
32096 svml_s_expf4_core-sse2, svml_s_expf8_core-sse,
32097 svml_s_logf16_core-avx2, svml_s_logf4_core-sse2,
32098 svml_s_logf8_core-sse, svml_s_powf16_core-avx2,
32099 svml_s_powf4_core-sse2, svml_s_powf8_core-sse,
32100 svml_s_sincosf16_core-avx2, svml_s_sincosf4_core-sse2,
32101 svml_s_sincosf8_core-sse, svml_s_sinf16_core-avx2,
32102 svml_s_sinf4_core-sse2 and svml_s_sinf8_core-sse.
32103 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h: New file.
32104 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h: Likewise.
32105 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-sse4_1.h: Likewise.
32106 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.c: Likewise.
32107 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.c: Likewise.
32108 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.c: Likewise.
32109 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.c: Likewise.
32110 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.c: Likewise.
32111 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.c: Likewise.
32112 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.c: Likewise.
32113 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.c: Likewise.
32114 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.c: Likewise.
32115 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.c: Likewise.
32116 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.c: Likewise.
32117 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.c: Likewise.
32118 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.c: Likewise.
32119 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.c: Likewise.
32120 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.c: Likewise.
32121 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.c: Likewise.
32122 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.c: Likewise.
32123 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.c: Likewise.
32124 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.c: Likewise.
32125 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.c: Likewise.
32126 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.c: Likewise.
32127 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.c: Likewise.
32128 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.c: Likewise.
32129 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.c: Likewise.
32130 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.c: Likewise.
32131 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.c: Likewise.
32132 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.c: Likewise.
32133 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.c: Likewise.
32134 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.c: Likewise.
32135 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.c: Likewise.
32136 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.c: Likewise.
32137 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.c: Likewise.
32138 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.c: Likewise.
32139 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.c: Likewise.
32140 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.c: Likewise.
32141 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.c: Likewise.
32142 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.S: Renamed to
32143 ...
32144 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core-sse2.S: This.
32145 Don't include <sysdep.h> nor <init-arch.h>.
32146 (_ZGVbN2v_cos): Removed.
32147 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.S: Renamed to
32148 ...
32149 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core-sse.S: This.
32150 Don't include <sysdep.h> nor <init-arch.h>.
32151 (_ZGVdN4v_cos): Removed.
32152 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.S: Renamed to
32153 ...
32154 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core-avx2.S: This.
32155 Don't include <sysdep.h> nor <init-arch.h>.
32156 (_ZGVeN8v_cos): Removed.
32157 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.S: Renamed to
32158 ...
32159 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core-sse2.S: This.
32160 Don't include <sysdep.h> nor <init-arch.h>.
32161 (_ZGVbN2v_exp): Removed.
32162 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.S: Renamed to
32163 ...
32164 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core-sse.S: This.
32165 Don't include <sysdep.h> nor <init-arch.h>.
32166 (_ZGVdN4v_exp): Removed.
32167 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.S: Renamed to
32168 ...
32169 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core-avx2.S: This.
32170 Don't include <sysdep.h> nor <init-arch.h>.
32171 (_ZGVeN8v_exp): Removed.
32172 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.S: Renamed to
32173 ...
32174 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core-sse2.S: This.
32175 Don't include <sysdep.h> nor <init-arch.h>.
32176 (_ZGVbN2v_log): Removed.
32177 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.S: Renamed to
32178 ...
32179 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core-sse.S: This.
32180 Don't include <sysdep.h> nor <init-arch.h>.
32181 (_ZGVdN4v_log): Removed.
32182 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.S: Renamed to
32183 ...
32184 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core-avx2.S: This.
32185 Don't include <sysdep.h> nor <init-arch.h>.
32186 (_ZGVeN8v_log): Removed.
32187 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.S: Renamed to
32188 ...
32189 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core-sse2.S: This.
32190 Don't include <sysdep.h> nor <init-arch.h>.
32191 (_ZGVbN2vv_pow): Removed.
32192 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.S: Renamed to
32193 ...
32194 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core-sse.S: This.
32195 Don't include <sysdep.h> nor <init-arch.h>.
32196 (_ZGVdN4vv_pow): Removed.
32197 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.S: Renamed to
32198 ...
32199 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core-avx2.S: This.
32200 Don't include <sysdep.h> nor <init-arch.h>.
32201 (_ZGVeN8vv_pow): Removed.
32202 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.S: Renamed to
32203 ...
32204 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core-sse2.S: This.
32205 Don't include <sysdep.h> nor <init-arch.h>.
32206 (_ZGVbN2v_sin): Removed.
32207 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.S: Renamed to
32208 ...
32209 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core-sse.S: This.
32210 Don't include <sysdep.h> nor <init-arch.h>.
32211 (_ZGVbN4v_sin): Removed.
32212 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.S: Renamed to
32213 ...
32214 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: This.
32215 Don't include <sysdep.h> nor <init-arch.h>.
32216 (_ZGVbN8v_sin): Removed.
32217 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.S: Renamed to
32218 ...
32219 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core-sse2.S: This.
32220 Don't include <sysdep.h> nor <init-arch.h>.
32221 (_ZGVbN2vvv_sincos): Removed.
32222 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.S: Renamed to
32223 ...
32224 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core-sse.S: This.
32225 Don't include <sysdep.h> nor <init-arch.h>.
32226 (_ZGVdN4vvv_sincos): Removed.
32227 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.S: Renamed to
32228 ...
32229 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core-avx2.S: This.
32230 Don't include <sysdep.h> nor <init-arch.h>.
32231 (_ZGVeN8vvv_sincos): Removed.
32232 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.S: Renamed to
32233 ...
32234 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core-avx2.S: This.
32235 Don't include <sysdep.h> nor <init-arch.h>.
32236 (_ZGVeN16v_cosf): Removed.
32237 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.S: Renamed to
32238 ...
32239 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core-sse2.S: This.
32240 Don't include <sysdep.h> nor <init-arch.h>.
32241 (_ZGVbN4v_cosf): Removed.
32242 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.S: Renamed to
32243 ...
32244 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core-sse.S: This.
32245 Don't include <sysdep.h> nor <init-arch.h>.
32246 (_ZGVdN8v_cosf): Removed.
32247 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.S: Renamed to
32248 ...
32249 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core-avx2.S: This.
32250 Don't include <sysdep.h> nor <init-arch.h>.
32251 (_ZGVeN16v_expf): Removed.
32252 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.S: Renamed to
32253 ...
32254 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core-sse2.S: This.
32255 Don't include <sysdep.h> nor <init-arch.h>.
32256 (_ZGVbN4v_expf): Removed.
32257 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.S: Renamed to
32258 ...
32259 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core-sse.S: This.
32260 Don't include <sysdep.h> nor <init-arch.h>.
32261 (_ZGVdN8v_expf): Removed.
32262 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.S: Renamed to
32263 ...
32264 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core-avx2.S: This.
32265 Don't include <sysdep.h> nor <init-arch.h>.
32266 (_ZGVeN16v_logf): Removed.
32267 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.S: Renamed to
32268 ...
32269 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core-sse2.S: This.
32270 Don't include <sysdep.h> nor <init-arch.h>.
32271 (_ZGVbN4v_logf): Removed.
32272 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.S: Renamed to
32273 ...
32274 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core-sse.S: This.
32275 Don't include <sysdep.h> nor <init-arch.h>.
32276 (_ZGVdN8v_logf): Removed.
32277 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.S: Renamed to
32278 ...
32279 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core-avx2.S: This.
32280 Don't include <sysdep.h> nor <init-arch.h>.
32281 (_ZGVeN16vv_powf): Removed.
32282 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.S: Renamed to
32283 ...
32284 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core-sse2.S: This.
32285 Don't include <sysdep.h> nor <init-arch.h>.
32286 (_ZGVbN4vv_powf): Removed.
32287 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.S: Renamed to
32288 ...
32289 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core-sse.S: This.
32290 Don't include <sysdep.h> nor <init-arch.h>.
32291 (_ZGVdN8vv_powf): Removed.
32292 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.S: Renamed to
32293 ...
32294 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core-avx2.S: This.
32295 Don't include <sysdep.h> nor <init-arch.h>.
32296 (_ZGVeN16vvv_sincosf): Removed.
32297 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.S: Renamed to
32298 ...
32299 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core-sse2.S: This.
32300 Don't include <sysdep.h> nor <init-arch.h>.
32301 (_ZGVbN4vvv_sincosf): Removed.
32302 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.S: Renamed to
32303 ...
32304 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core-sse.S: This.
32305 Don't include <sysdep.h> nor <init-arch.h>.
32306 (_ZGVdN8vvv_sincosf): Removed.
32307 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.S: Renamed to
32308 ...
32309 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core-avx2.S: This.
32310 Don't include <sysdep.h> nor <init-arch.h>.
32311 (_ZGVeN16v_sinf): Removed.
32312 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.S: Renamed to
32313 ...
32314 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core-sse2.S: This.
32315 Don't include <sysdep.h> nor <init-arch.h>.
32316 (_ZGVbN4v_sinf): Removed.
32317 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.S: Renamed to
32318 ...
32319 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core-sse.S: This.
32320 Don't include <sysdep.h> nor <init-arch.h>.
32321 (_ZGVdN8v_sinf): Removed.
32322
32323 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32324
32325 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
32326 Add s_ceil-sse4_1, s_ceilf-sse4_1, s_floor-sse4_1,
32327 s_floorf-sse4_1, s_nearbyint-sse4_1, s_nearbyintf-sse4_1,
32328 s_rint-sse4_1 and s_rintf-sse4_1.
32329 * sysdeps/x86_64/fpu/multiarch/ifunc-sse4_1.h: New file.
32330 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
32331 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
32332 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
32333 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
32334 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Likewise.
32335 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Likewise.
32336 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
32337 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
32338 * sysdeps/x86_64/fpu/multiarch/s_ceil.S: Renamed to ...
32339 * sysdeps/x86_64/fpu/multiarch/s_ceil-sse4_1.S: This. Don't
32340 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32341 (__ceil): Removed.
32342 * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: Renamed to ...
32343 * sysdeps/x86_64/fpu/multiarch/s_ceilf-sse4_1.S: This. Don't
32344 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32345 (__ceilf): Removed.
32346 * sysdeps/x86_64/fpu/multiarch/s_floor.S: Renamed to ...
32347 * sysdeps/x86_64/fpu/multiarch/s_floor-sse4_1.S: This. Don't
32348 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32349 (__floor): Removed.
32350 * sysdeps/x86_64/fpu/multiarch/s_floorf.S: Renamed to ...
32351 * sysdeps/x86_64/fpu/multiarch/s_floorf-sse4_1.S: This. Don't
32352 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32353 (__floorf): Removed.
32354 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: Renamed to ...
32355 * sysdeps/x86_64/fpu/multiarch/s_nearbyint-sse4_1.S: This. Don't
32356 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32357 (__nearbyint): Removed.
32358 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: Renamed to ...
32359 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-sse4_1.S: This. Don't
32360 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32361 (__nearbyintf): Removed.
32362 * sysdeps/x86_64/fpu/multiarch/s_rint.S: Renamed to ...
32363 * sysdeps/x86_64/fpu/multiarch/s_rint-sse4_1.S: This. Don't
32364 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32365 (__rint): Removed.
32366 * sysdeps/x86_64/fpu/multiarch/s_rintf.S: Renamed to ...
32367 * sysdeps/x86_64/fpu/multiarch/s_rintf-sse4_1.S: This. Don't
32368 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32369 (__rintf): Removed.
32370
32371 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32372
32373 * sysdeps/i386/start.S (_start): Check Check PIC instead of
32374 SHARED. Avoid dynamic relocation against main in static PIE.
32375
32376 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32377
32378 [BZ #21815]
32379 * elf/Makefile (CFLAGS-tst-prelink.c): New.
32380 (LDFLAGS-tst-prelink): Likewise.
32381
32382 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32383
32384 * sysdeps/unix/sysv/linux/i386/sysdep.h (I386_USE_SYSENTER):
32385 Define to I386_USE_SYSENTER to 0 or 1 if not defined.
32386 (ENTER_KERNEL): Check if I386_USE_SYSENTER is 1 and check PIC.
32387 (INTERNAL_SYSCALL_MAIN_INLINE): Likewise.
32388 (INTERNAL_SYSCALL_NCS): Likewise.
32389 (LOADARGS_1): Likewise.
32390 (LOADARGS_5): Likewise.
32391 (RESTOREARGS_1): Likewise.
32392 (RESTOREARGS_5): Likewise.
32393
32394 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32395
32396 * sysdeps/x86_64/memmove.S (MEMCPY_SYMBOL): Don't check SHARED.
32397 (MEMPCPY_SYMBOL): Likewise.
32398 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
32399 (__libc_ifunc_impl_list): Test memcpy and mempcpy in libc.a.
32400 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Also include
32401 in libc.a.
32402 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
32403 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
32404 Likewise.
32405 * sysdeps/x86_64/multiarch/memcpy.c: Also include in libc.a.
32406 (__hidden_ver1): Don't use in libc.a.
32407 * sysdeps/x86_64/multiarch/memmove-sse2-unaligned-erms.S
32408 (__mempcpy): Don't create a weak alias in libc.a.
32409 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S: Support
32410 libc.a.
32411 * sysdeps/x86_64/multiarch/mempcpy.c: Also include in libc.a.
32412 (__hidden_ver1): Don't use in libc.a.
32413
32414 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32415
32416 * config.make.in (have-insert): New.
32417 * configure.ac (libc_cv_insert): New. Set to yes if linker
32418 supports INSERT in linker script.
32419 (AC_SUBST(libc_cv_insert): New.
32420 * configure: Regenerated.
32421 * sysdeps/x86_64/Makefile (tests): Add tst-split-dynreloc only
32422 if $(have-insert) == yes.
32423
32424 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32425
32426 * elf/Makefile (tests): Add vismain only if
32427 $(have-protected-data) == yes.
32428 (tests-pie): Likewise.
32429
32430 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32431
32432 [BZ #21871]
32433 * sysdeps/x86/cpu-features.c (init_cpu_features): Set
32434 bit_arch_Use_dl_runtime_resolve_opt only with AVX512F.
32435
32436 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32437
32438 [BZ #21790]
32439 * sysdeps/i386/i586/memset.S
32440 (__memset_zero_constant_len_parameter): Removed.
32441 * sysdeps/i386/i686/memset.S
32442 (__memset_zero_constant_len_parameter): Likewise.
32443 * sysdeps/i386/i686/multiarch/memset_chk.S
32444 (__memset_zero_constant_len_parameter): Likewise.
32445 * sysdeps/x86_64/memset.S (__memset_zero_constant_len_parameter):
32446 Likewise.
32447
32448 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
32449
32450 * stdlib/getentropy.c (getentropy): Change return type to int.
32451
32452 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
32453
32454 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Regenerated.
32455
32456 2017-08-03 Joseph Myers <joseph@codesourcery.com>
32457
32458 * math/s_nextafter.c (__nextafter): Use uintN_t instead of
32459 u_intN_t.
32460 * math/s_nexttowardf.c (__nexttowardf): Likewise.
32461 * sysdeps/generic/math_private.h (ieee_double_shape_type):
32462 Likewise.
32463 (ieee_float_shape_type): Likewise.
32464 * sysdeps/i386/fpu/s_fpclassifyl.c (__fpclassifyl): Likewise.
32465 * sysdeps/i386/fpu/s_isnanl.c (__isnanl): Likewise.
32466 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
32467 * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
32468 * sysdeps/i386/fpu/s_nexttowardf.c (__nexttowardf): Likewise.
32469 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Likewise.
32470 * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Likewise.
32471 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
32472 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
32473 Likewise.
32474 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
32475 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
32476 (__ieee754_yn): Likewise.
32477 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
32478 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
32479 * sysdeps/ieee754/dbl-64/e_rem_pio2.c (__ieee754_rem_pio2):
32480 Likewise.
32481 * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
32482 * sysdeps/ieee754/dbl-64/s_ceil.c (__ceil): Likewise.
32483 * sysdeps/ieee754/dbl-64/s_copysign.c (__copysign): Likewise.
32484 * sysdeps/ieee754/dbl-64/s_erf.c (__erf): Likewise.
32485 (__erfc): Likewise.
32486 * sysdeps/ieee754/dbl-64/s_expm1.c (__expm1): Likewise.
32487 * sysdeps/ieee754/dbl-64/s_finite.c (FINITE): Likewise.
32488 * sysdeps/ieee754/dbl-64/s_floor.c (__floor): Likewise.
32489 * sysdeps/ieee754/dbl-64/s_fpclassify.c (__fpclassify): Likewise.
32490 * sysdeps/ieee754/dbl-64/s_isnan.c (__isnan): Likewise.
32491 * sysdeps/ieee754/dbl-64/s_issignaling.c (__issignaling):
32492 Likewise.
32493 * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Likewise.
32494 * sysdeps/ieee754/dbl-64/s_llround.c (__llround): Likewise.
32495 * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
32496 * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Likewise.
32497 * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
32498 * sysdeps/ieee754/dbl-64/s_nextup.c (__nextup): Likewise.
32499 * sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Likewise.
32500 * sysdeps/ieee754/dbl-64/s_round.c (__round): Likewise.
32501 * sysdeps/ieee754/dbl-64/s_trunc.c (__trunc): Likewise.
32502 * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c
32503 (__issignaling): Likewise.
32504 * sysdeps/ieee754/flt-32/e_atan2f.c (__ieee754_atan2f): Likewise.
32505 * sysdeps/ieee754/flt-32/e_fmodf.c (__ieee754_fmodf): Likewise.
32506 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
32507 Likewise.
32508 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
32509 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
32510 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
32511 * sysdeps/ieee754/flt-32/e_rem_pio2f.c (__ieee754_rem_pio2f):
32512 Likewise.
32513 * sysdeps/ieee754/flt-32/e_remainderf.c (__ieee754_remainderf):
32514 Likewise.
32515 * sysdeps/ieee754/flt-32/e_sqrtf.c (__ieee754_sqrtf): Likewise.
32516 * sysdeps/ieee754/flt-32/s_ceilf.c (__ceilf): Likewise.
32517 * sysdeps/ieee754/flt-32/s_copysignf.c (__copysignf): Likewise.
32518 * sysdeps/ieee754/flt-32/s_erff.c (__erff): Likewise.
32519 (__erfcf): Likewise.
32520 * sysdeps/ieee754/flt-32/s_expm1f.c (__expm1f): Likewise.
32521 * sysdeps/ieee754/flt-32/s_finitef.c (FINITEF): Likewise.
32522 * sysdeps/ieee754/flt-32/s_floorf.c (__floorf): Likewise.
32523 * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf):
32524 Likewise.
32525 * sysdeps/ieee754/flt-32/s_isnanf.c (__isnanf): Likewise.
32526 * sysdeps/ieee754/flt-32/s_issignalingf.c (__issignalingf):
32527 Likewise.
32528 * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
32529 * sysdeps/ieee754/flt-32/s_llroundf.c (__llroundf): Likewise.
32530 * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
32531 * sysdeps/ieee754/flt-32/s_lroundf.c (__lroundf): Likewise.
32532 * sysdeps/ieee754/flt-32/s_modff.c (__modff): Likewise.
32533 * sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
32534 * sysdeps/ieee754/flt-32/s_roundf.c (__roundf): Likewise.
32535 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl):
32536 Likewise.
32537 * sysdeps/ieee754/ldbl-128/e_atan2l.c (__ieee754_atan2l):
32538 Likewise.
32539 * sysdeps/ieee754/ldbl-128/e_atanhl.c (__ieee754_atanhl):
32540 Likewise.
32541 * sysdeps/ieee754/ldbl-128/e_fmodl.c (__ieee754_fmodl): Likewise.
32542 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
32543 Likewise.
32544 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
32545 Likewise.
32546 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
32547 (__ieee754_ynl): Likewise.
32548 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
32549 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (__ieee754_rem_pio2l):
32550 Likewise.
32551 * sysdeps/ieee754/ldbl-128/e_remainderl.c (__ieee754_remainderl):
32552 Likewise.
32553 * sysdeps/ieee754/ldbl-128/e_sinhl.c (__ieee754_sinhl): Likewise.
32554 * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Likewise.
32555 * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
32556 Likewise.
32557 * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Likewise.
32558 * sysdeps/ieee754/ldbl-128/s_ceill.c (__ceill): Likewise.
32559 * sysdeps/ieee754/ldbl-128/s_copysignl.c (__copysignl): Likewise.
32560 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfcl): Likewise.
32561 * sysdeps/ieee754/ldbl-128/s_fabsl.c (__fabsl): Likewise.
32562 * sysdeps/ieee754/ldbl-128/s_finitel.c (__finitel): Likewise.
32563 * sysdeps/ieee754/ldbl-128/s_floorl.c (__floorl): Likewise.
32564 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c (__fpclassifyl):
32565 Likewise.
32566 * sysdeps/ieee754/ldbl-128/s_frexpl.c (__frexpl): Likewise.
32567 * sysdeps/ieee754/ldbl-128/s_isnanl.c (__isnanl): Likewise.
32568 * sysdeps/ieee754/ldbl-128/s_issignalingl.c (__issignalingl):
32569 Likewise.
32570 * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
32571 * sysdeps/ieee754/ldbl-128/s_llroundl.c (__llroundl): Likewise.
32572 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
32573 * sysdeps/ieee754/ldbl-128/s_lroundl.c (__lroundl): Likewise.
32574 * sysdeps/ieee754/ldbl-128/s_modfl.c (__modfl): Likewise.
32575 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
32576 Likewise.
32577 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
32578 Likewise.
32579 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
32580 Likewise.
32581 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
32582 Likewise.
32583 * sysdeps/ieee754/ldbl-128/s_nextupl.c (__nextupl): Likewise.
32584 * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
32585 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
32586 * sysdeps/ieee754/ldbl-128/s_roundl.c (__roundl): Likewise.
32587 * sysdeps/ieee754/ldbl-128/s_tanhl.c (__tanhl): Likewise.
32588 * sysdeps/ieee754/ldbl-128/s_truncl.c (__truncl): Likewise.
32589 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl):
32590 Likewise.
32591 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
32592 Likewise.
32593 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
32594 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
32595 Likewise.
32596 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c
32597 (__ieee754_remainderl): Likewise.
32598 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
32599 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
32600 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
32601 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
32602 Likewise.
32603 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
32604 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
32605 Likewise.
32606 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
32607 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Likewise.
32608 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
32609 * sysdeps/ieee754/ldbl-96/e_atanhl.c (__ieee754_atanhl): Likewise.
32610 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
32611 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
32612 Likewise.
32613 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
32614 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
32615 (__ieee754_y0l): Likewise.
32616 (pzero): Likewise.
32617 (qzero): Likewise.
32618 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
32619 (__ieee754_y1l): Likewise.
32620 (pone): Likewise.
32621 (qone): Likewise.
32622 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
32623 (__ieee754_ynl): Likewise.
32624 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
32625 (__ieee754_lgammal_r): Likewise.
32626 * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c (__ieee754_rem_pio2l):
32627 Likewise.
32628 * sysdeps/ieee754/ldbl-96/e_sinhl.c (__ieee754_sinhl): Likewise.
32629 * sysdeps/ieee754/ldbl-96/s_copysignl.c (__copysignl): Likewise.
32630 * sysdeps/ieee754/ldbl-96/s_erfl.c (__erfl): Likewise.
32631 (__erfcl): Likewise.
32632 * sysdeps/ieee754/ldbl-96/s_frexpl.c (__frexpl): Likewise.
32633 * sysdeps/ieee754/ldbl-96/s_issignalingl.c (__issignalingl):
32634 Likewise.
32635 * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
32636 * sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Likewise.
32637 * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
32638 * sysdeps/ieee754/ldbl-96/s_lroundl.c (__lroundl): Likewise.
32639 * sysdeps/ieee754/ldbl-96/s_modfl.c (__modfl): Likewise.
32640 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
32641 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
32642 Likewise.
32643 * sysdeps/ieee754/ldbl-96/s_nextupl.c (__nextupl): Likewise.
32644 * sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
32645 * sysdeps/ieee754/ldbl-96/s_roundl.c (__roundl): Likewise.
32646 * sysdeps/ieee754/ldbl-96/s_tanhl.c (__tanhl): Likewise.
32647 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
32648 Likewise.
32649 * sysdeps/m68k/m680x0/fpu/e_pow.c (s(__ieee754_pow)): Likewise.
32650 * sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c (__fpclassifyl):
32651 Likewise.
32652 * sysdeps/m68k/m680x0/fpu/s_llrint.c (__llrint): Likewise.
32653 * sysdeps/m68k/m680x0/fpu/s_llrintf.c (__llrintf): Likewise.
32654 * sysdeps/m68k/m680x0/fpu/s_llrintl.c (__llrintl): Likewise.
32655 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
32656 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
32657
32658 2017-08-03 Florian Weimer <fweimer@redhat.com>
32659
32660 [BZ #21885]
32661 * sysdeps/posix/getaddrinfo.c (gethosts): Release resolver context
32662 on memory allocation failure.
32663
32664 2017-08-03 Alan Modra <amodra@gmail.com>
32665
32666 * sysdeps/powerpc/mod-tlsopt-powerpc.c: Extract from
32667 tst-tlsopt-powerpc.c with function name change and no test harness.
32668 * sysdeps/powerpc/tst-tlsopt-powerpc.c: Remove body of test.
32669 Call tls_get_addr_opt_test.
32670 * sysdeps/powerpc/Makefile (LDFLAGS-tst-tlsopt-powerpc): Don't define.
32671 (modules-names): Add mod-tlsopt-powerpc.
32672 (mod-tlsopt-powerpc.so-no-z-defs): Define.
32673 (tst-tlsopt-powerpc): Depend on .so.
32674 * sysdeps/powerpc/powerpc64/tls-macros.h (__TLS_GET_ADDR): Don't
32675 define. Expand use in TLS_GD and TLS_LD.
32676
32677 2017-08-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
32678
32679 * sysdeps/mach/hurd/enbl-secure.c (__libc_init_secure): Define
32680 function.
32681 * sysdeps/posix/shm_open.c: Include <pthread.h>.
32682
32683 2017-08-02 Joseph Myers <joseph@codesourcery.com>
32684
32685 [BZ #21686]
32686 * math/tgmath.h (__TGMATH_BINARY_REAL_ONLY): Add arguments before
32687 comparing size with that of double.
32688 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
32689 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
32690 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
32691 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
32692 (__TGMATH_BINARY_REAL_IMAG): Likewise.
32693 * math/gen-tgmath-tests.py (Type.init_types): Create __int128 and
32694 unsigned __int128 types.
32695
32696 2017-08-02 Steve Ellcey <sellcey@cavium.com>
32697
32698 * localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c
32699 CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c,
32700 CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c,
32701 CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c,
32702 CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): Remove.
32703
32704 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32705
32706 * sysdeps/x86_64/start.S (_start): Check PIC instead of SHARED.
32707
32708 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32709
32710 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Check PIC instead
32711 of SHARED.
32712 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
32713 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
32714 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
32715 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
32716 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
32717 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
32718 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
32719
32720 2017-08-02 Joseph Myers <joseph@codesourcery.com>
32721
32722 [BZ #21685]
32723 * math/tgmath.h (__tgmath_real_type): Use unary + on potentially
32724 bit-field expressions passed to sizeof or typeof.
32725 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
32726 (__TGMATH_F128): Likewise.
32727 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
32728 (__TGMATH_CF128): Likewise.
32729 (__TGMATH_UNARY_REAL_ONLY): Likewise.
32730 (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
32731 (__TGMATH_BINARY_FIRST_REAL_ONLY): Likewise.
32732 (__TGMATH_BINARY_FIRST_REAL_STD_ONLY): Likewise.
32733 (__TGMATH_BINARY_REAL_ONLY): Likewise.
32734 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
32735 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
32736 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
32737 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
32738 (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY): Likewise.
32739 (__TGMATH_UNARY_REAL_IMAG): Likewise.
32740 (__TGMATH_UNARY_IMAG): Likewise.
32741 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
32742 (__TGMATH_BINARY_REAL_IMAG): Likewise.
32743 * math/gen-tgmath-tests.py (Type.init_types): Create bit_field
32744 type.
32745 (define_vars_for_type): Handle bit_field type specially.
32746 (Tests.__init__): Declare structure with bit-field element.
32747
32748 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32749
32750 [BZ #21791]
32751 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S
32752 (MEMCPY_CHK): Define only if SHARED is defined.
32753 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S (MEMCPY_CHK):
32754 Likewise.
32755 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S (MEMCPY_CHK):
32756 Likewise.
32757
32758 See ChangeLog.18 for earlier changes.