From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oa1-x30.google.com (mail-oa1-x30.google.com [IPv6:2001:4860:4864:20::30]) by sourceware.org (Postfix) with ESMTPS id B65313856274 for ; Wed, 1 Jun 2022 17:00:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B65313856274 Received: by mail-oa1-x30.google.com with SMTP id 586e51a60fabf-f2e0a41009so3506241fac.6 for ; Wed, 01 Jun 2022 10:00:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=zEwujDZsvvuBsHJJbUxDwvCMTeGljoUUdE8KJrmlx+Y=; b=xWhkJM1sHIUy90D5rEF1ffjcmdAGEdMls0sAYtre6++dO7T4A1UK1T7gZVMpZd5N9r l7FEyp/m3T3nyaKmxn3dLhjFP1+FwwEoZRAgd0IGG7HEvmukX2fCfxg+qTIkqeC9MaJs ncWFySQv4M+xTAzpUe4SOZ87gq3nrdVzjLwBVvzW8WZ+lPywoWjXgSi1NpGqFc6krX+X vjpn1AQlA6+A1FeikrghCJQs/Wh+tBpNt0GWB6VtL/MKO5A43NqCF8Yi8gwpQXuIGflx a2LBaApYL+Y6AjzbQPIMqVrYEG2pQk0rHZVKI2kE6shV8LwUyZ/lD3MUW1dVahTagvHr oCFA== X-Gm-Message-State: AOAM532UlvMXbC09wyyAhrj+A0s5hBAXGXF7DgaQnR1neZyAYTJ5+zS/ bCFXNU79kj2lLkJGkvWBmWNGbpKpbY8hkQ== X-Google-Smtp-Source: ABdhPJwS4tpfanOCyJg9qJtl7LYywuH/7d9mQ+ktlXop/isIKvBCksY4Hmz/KRaGmUkoLPqzzZHfrg== X-Received: by 2002:a05:6870:3105:b0:f2:9615:ff8e with SMTP id v5-20020a056870310500b000f29615ff8emr16443717oaa.200.1654102834859; Wed, 01 Jun 2022 10:00:34 -0700 (PDT) Received: from birita.. ([2804:431:c7ca:e39c:a183:7f80:9e50:177b]) by smtp.gmail.com with ESMTPSA id bh35-20020a056808182300b00325cda1ff95sm1257658oib.20.2022.06.01.10.00.33 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 01 Jun 2022 10:00:34 -0700 (PDT) From: Adhemerval Zanella To: libc-stable@sourceware.org Subject: [COMMITTED 2.34 3/8] posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207) Date: Wed, 1 Jun 2022 14:00:23 -0300 Message-Id: <20220601170028.2638215-3-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220601170028.2638215-1-adhemerval.zanella@linaro.org> References: <20220601170028.2638215-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-stable@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-stable mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2022 17:00:41 -0000 This is a missing spot initially from 52a5fe70a2c77935. Checked on i686-linux-gnu. (cherry picked from commit 574ba60fc8a7fb35e6216e2fdecc521acab7ffd2) --- 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; -- 2.34.1