From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 645123856DF8; Wed, 1 Jun 2022 16:57:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 645123856DF8 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/release/2.34/master] posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207) X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/release/2.34/master X-Git-Oldrev: aa8a87f51d7a1fb86ff75d3e3870316b6bc70dfe X-Git-Newrev: 9db6a597ef950737d3cd7af0d4211291197b82dd Message-Id: <20220601165728.645123856DF8@sourceware.org> Date: Wed, 1 Jun 2022 16:57:28 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2022 16:57:28 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9db6a597ef950737d3cd7af0d4211291197b82dd commit 9db6a597ef950737d3cd7af0d4211291197b82dd Author: Adhemerval Zanella Date: Tue May 31 12:17:20 2022 -0300 posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207) This is a missing spot initially from 52a5fe70a2c77935. Checked on i686-linux-gnu. (cherry picked from commit 574ba60fc8a7fb35e6216e2fdecc521acab7ffd2) Diff: --- NEWS | 1 + sysdeps/posix/posix_fallocate.c | 4 ++-- sysdeps/posix/posix_fallocate64.c | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 9fde64d55c..6274350737 100644 --- a/NEWS +++ b/NEWS @@ -103,6 +103,7 @@ The following bugs are resolved with this release: AT_SYMLINK_NOFOLLOW [29203] libc: daemon is not y2038 aware [29204] libc: getusershell is not 2038 aware + [29207] libc: posix_fallocate fallback implementation is not y2038 Version 2.34 diff --git a/sysdeps/posix/posix_fallocate.c b/sysdeps/posix/posix_fallocate.c index 0bb379c94d..4381033d6e 100644 --- a/sysdeps/posix/posix_fallocate.c +++ b/sysdeps/posix/posix_fallocate.c @@ -30,7 +30,7 @@ int posix_fallocate (int fd, __off_t offset, __off_t len) { - struct stat64 st; + struct __stat64_t64 st; if (offset < 0 || len < 0) return EINVAL; @@ -48,7 +48,7 @@ posix_fallocate (int fd, __off_t offset, __off_t len) } /* We have to make sure that this is really a regular file. */ - if (__fstat64 (fd, &st) != 0) + if (__fstat64_time64 (fd, &st) != 0) return EBADF; if (S_ISFIFO (st.st_mode)) return ESPIPE; diff --git a/sysdeps/posix/posix_fallocate64.c b/sysdeps/posix/posix_fallocate64.c index c1e233b49c..d45b0c1748 100644 --- a/sysdeps/posix/posix_fallocate64.c +++ b/sysdeps/posix/posix_fallocate64.c @@ -30,7 +30,7 @@ int __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len) { - struct stat64 st; + struct __stat64_t64 st; if (offset < 0 || len < 0) return EINVAL; @@ -48,7 +48,7 @@ __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len) } /* We have to make sure that this is really a regular file. */ - if (__fstat64 (fd, &st) != 0) + if (__fstat64_time64 (fd, &st) != 0) return EBADF; if (S_ISFIFO (st.st_mode)) return ESPIPE;