From patchwork Mon Feb 17 13:17:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukasz Majewski X-Patchwork-Id: 1239221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-109850-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=qZoBF9n+; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48Ll0k5HGzz9sRG for ; Tue, 18 Feb 2020 00:18:14 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id :mime-version:content-transfer-encoding; q=dns; s=default; b=WAH Au9SDMoLY/9BoiKybmYW/ah3vGCnDI2Z0PnTN0SwqGkON6ozM2yzJ2xRHuCtiJxA akYm9tcibQ0gbL7ChibTZR6S4/4JqT8jwoxyVL1Z/iy/QWV9rwituilSD0TzALxj 29olDOymrmndp63p8Pn7K8Y2BBkHZFS22KkJFgHs= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id :mime-version:content-transfer-encoding; s=default; bh=ktVshW+r3 /QAAo/zZrdxup9VOgM=; b=qZoBF9n+/8SIpPLEr7bqqVsvZTcElvJ79XMgxTm7K zMbFgIikNPVEJ5bxtnfKnUgdkx+oxRzuGDgwtQAnjyaXDTxPttx+gwS7Qfa3V0GE dM0Kxr+HVRsZAnxMJUwrnSjVWdvHg2e7b0SfCHhrPsj/TzJ1KCufUpkURR6HVn9N ek= Received: (qmail 15739 invoked by alias); 17 Feb 2020 13:18:04 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 15609 invoked by uid 89); 17 Feb 2020 13:18:03 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-14.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=H*Ad:U*fw, HContent-Transfer-Encoding:8bit X-HELO: mail-out.m-online.net From: Lukasz Majewski To: Joseph Myers , Paul Eggert , Adhemerval Zanella Cc: Alistair Francis , Alistair Francis , GNU C Library , Siddhesh Poyarekar , Florian Weimer , Florian Weimer , Zack Weinberg , Carlos O'Donell , Andreas Schwab , Vineet Gupta , Lukasz Majewski Subject: [PATCH 0/3] y2038: Conversion of [lf]utimes[at] to support 64 bit time Date: Mon, 17 Feb 2020 14:17:32 +0100 Message-Id: <20200217131735.18180-1-lukma@denx.de> MIME-Version: 1.0 The most recent work on Y2038 compiliance for architectures with __TIMESIZE != 64 and __WORDSIZE==32 (e.g. armv7) can be found here: https://github.com/lmajewski/y2038_glibc/commits/y2038_edge Lukasz Majewski (3): y2038: linux: Provide __futimes64 implementation y2038: linux: Provide __lutimes64 implementation y2038: linux: Provide __futimesat64 implementation include/time.h | 10 +++++++ sysdeps/unix/sysv/linux/futimes.c | 42 ++++++++++++++++------------- sysdeps/unix/sysv/linux/futimesat.c | 41 +++++++++++++++++++--------- sysdeps/unix/sysv/linux/lutimes.c | 37 ++++++++++++++++--------- 4 files changed, 85 insertions(+), 45 deletions(-)