5f265ff1c6
* Wed Jun 8 2022 Florian Weimer <fweimer@redhat.com> - 2.34-37 - Enable rseq by default and add GLIBC_2.35 rseq symbols (#2085529) * Wed Jun 8 2022 Florian Weimer <fweimer@redhat.com> - 2.34-36 - Sync with upstream branch release/2.34/master, commit 4c92a1041257c0155c6aa7a182fe5f78e477b0e6: - powerpc: Fix VSX register number on __strncpy_power9 [BZ #29197] - socket: Fix mistyped define statement in socket/sys/socket.h (BZ #29225) - iconv: Use 64 bit stat for gconv_parseconfdir (BZ# 29213) - catgets: Use 64 bit stat for __open_catalog (BZ# 29211) - inet: Use 64 bit stat for ruserpass (BZ# 29210) - socket: Use 64 bit stat for isfdtype (BZ# 29209) - posix: Use 64 bit stat for fpathconf (_PC_ASYNC_IO) (BZ# 29208) - posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207) - misc: Use 64 bit stat for getusershell (BZ# 29204) - misc: Use 64 bit stat for daemon (BZ# 29203) Resolves: #2085529 Resolves: #2091549 Related: #2091541
29 lines
921 B
Diff
29 lines
921 B
Diff
commit f9c3e57ac25511db78f3d51a38f6a715be220479
|
|
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
|
Date: Tue May 31 12:22:13 2022 -0300
|
|
|
|
posix: Use 64 bit stat for fpathconf (_PC_ASYNC_IO) (BZ# 29208)
|
|
|
|
This is a missing spot initially from 52a5fe70a2c77935.
|
|
|
|
Checked on i686-linux-gnu.
|
|
|
|
(cherry picked from commit 6e7137f28c9d743d66b5a1cb8fa0d1717b96f853)
|
|
|
|
diff --git a/sysdeps/posix/fpathconf.c b/sysdeps/posix/fpathconf.c
|
|
index ec0e780466756e00..e673f2016136679e 100644
|
|
--- a/sysdeps/posix/fpathconf.c
|
|
+++ b/sysdeps/posix/fpathconf.c
|
|
@@ -131,9 +131,9 @@ __fpathconf (int fd, int name)
|
|
#ifdef _POSIX_ASYNC_IO
|
|
{
|
|
/* AIO is only allowed on regular files and block devices. */
|
|
- struct stat64 st;
|
|
+ struct __stat64_t64 st;
|
|
|
|
- if (__fstat64 (fd, &st) < 0
|
|
+ if (__fstat64_time64 (fd, &st) < 0
|
|
|| (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
|
|
return -1;
|
|
else
|