diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-10-19 19:14:04 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-10-25 16:13:11 -0300 |
commit | 7b7dfbb0cbdffebf0233c650627a4861212fbb60 (patch) | |
tree | 8871cf9324c5e6d9bcb7cd146f554d30627794fd /NEWS | |
parent | 9273b2d0e93e7355656cad3be3a1ca76489df483 (diff) | |
download | glibc-7b7dfbb0cbdffebf0233c650627a4861212fbb60.zip glibc-7b7dfbb0cbdffebf0233c650627a4861212fbb60.tar.gz glibc-7b7dfbb0cbdffebf0233c650627a4861212fbb60.tar.bz2 |
linux: Fix generic struct_stat for 64 bit time (BZ# 29657)
The generic Linux struct_stat misses the conditionals to use
bits/struct_stat_time64_helper.h in the __USE_TIME_BITS64 for
architecture that uses __TIMESIZE == 32 (currently csky and nios2).
Since newer ports should not support 32 bit time_t, the generic
implementation should be used as default.
For arm, hppa, and sh a copy of default struct_stat is added,
while for csky and nios a new one based on generic is used, along
with conditionals to use bits/struct_stat_time64_helper.h.
The default struct_stat is also replaced with the generic one.
Checked on aarch64-linux-gnu and arm-linux-gnueabihf.
(cherry picked from commit 7a6ca82f8007ddbd43e2b8fce806ba7101ee47f5)
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -43,6 +43,8 @@ The following bugs are resolved with this release: [29607] nscd repeatably crashes calling __strlen_avx2 when hosts cache is enabled [29638] libc: stdlib: arc4random fallback is never used + [29657] libc: Incorrect struct stat for 64-bit time on linux/generic + platforms Version 2.36 |