From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x82f.google.com (mail-qt1-x82f.google.com [IPv6:2607:f8b0:4864:20::82f]) by sourceware.org (Postfix) with ESMTPS id E59D8385781D for ; Thu, 20 May 2021 10:37:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E59D8385781D Received: by mail-qt1-x82f.google.com with SMTP id 1so12399202qtb.0 for ; Thu, 20 May 2021 03:37:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=wIQ5WO7aGFkcgX1jIBzINLu8r4UZk431tjRlN5IDCJ0=; b=oVvXIiL8raArUaMbO84aS5ra7kPEhBgu6rogcg221sXO66FoBmDg6WbmOjJYGgV5no fB/MXxrb/SXQIcibzkVuDCgt6eAdNlHrHCpaceg9mMmIMqET+9xAbRWsMlVamKJRjPcd LgLgKA5ooDozjRjwEFMvjJSGOhVMRWD492b8UwUMTnIg1jDg62tR62UmzuHxBSrUzA5y H1ks5+3SXWYPFL9j74JeoT6RamKMNs1LguCaMGwMeSXTRo2hKp/KfAIFUW6E9RPT9jQy SZnrQUUP4vlNJcMIIClh5bXdi9e1VX1EB9cbBn8lLABHPXxUiE4jUWWTPXsuOx4pYLro 8Yww== X-Gm-Message-State: AOAM5316e7JU+zvnpPiUeUKKZ9sfYmhzYZw5h1TSeNfWbmTFGgQ4n3tJ TgOImT9UYphcwPgOM22tJjdhBlNd6ttt2A== X-Google-Smtp-Source: ABdhPJxTk/Sd74GtE+P3XIW5OTGqTMyzvVNBZdwUMGqGqFI1GrpV7g54+p7mUkTjvC3jPvIg3xUXVA== X-Received: by 2002:ac8:7611:: with SMTP id t17mr4301781qtq.294.1621507030300; Thu, 20 May 2021 03:37:10 -0700 (PDT) Received: from [192.168.1.4] ([177.194.37.86]) by smtp.gmail.com with ESMTPSA id d200sm1683552qkc.44.2021.05.20.03.37.09 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 20 May 2021 03:37:10 -0700 (PDT) Subject: Re: [PATCH v2 19/25] y2038: Add support for 64 bit time on legacy ABIs To: Florian Weimer , Adhemerval Zanella via Libc-alpha References: <20210518205613.1487824-1-adhemerval.zanella@linaro.org> <20210518205613.1487824-20-adhemerval.zanella@linaro.org> <87r1i1sxhc.fsf@oldenburg.str.redhat.com> From: Adhemerval Zanella Message-ID: Date: Thu, 20 May 2021 07:37:07 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <87r1i1sxhc.fsf@oldenburg.str.redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2021 10:37:12 -0000 On 20/05/2021 03:58, Florian Weimer wrote: > * Adhemerval Zanella via Libc-alpha: > >> diff --git a/sysdeps/unix/sysv/linux/i386/Makefile b/sysdeps/unix/sysv/linux/i386/Makefile >> index da716e2c1b..8d5efb4f65 100644 >> --- a/sysdeps/unix/sysv/linux/i386/Makefile >> +++ b/sysdeps/unix/sysv/linux/i386/Makefile >> @@ -1,6 +1,8 @@ >> # The default ABI is 32. >> default-abi := 32 >> >> +extra-version := Versions-y2038 >> + >> ifeq ($(subdir),misc) >> sysdep_routines += ioperm iopl vm86 > > Where does this come from? It is a leftover from development, I will remove it.