From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x832.google.com (mail-qt1-x832.google.com [IPv6:2607:f8b0:4864:20::832]) by sourceware.org (Postfix) with ESMTPS id 3D2433939C04 for ; Mon, 8 Mar 2021 13:23:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3D2433939C04 Received: by mail-qt1-x832.google.com with SMTP id v3so7427077qtw.4 for ; Mon, 08 Mar 2021 05:23:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:from:to:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=W8OrcEGdTqbezvRFZj2oWCfMXFGtTUXyne/WE6heDlI=; b=F7/PKgogto5vuxKIOAH5D+gZzg6cQ3sgqdHJGURXdVltORqQKTgG92CFhA3DIgaOgV umCcq6+8vaIsWBUSeFn3Fb8lJjr1tRSw4AahaoX2fY9DwFDurqQQFONptPuCUGh75u9r Zs/Bxys1N/VLXuKwfEeiIF+WePdogTpxQWnU+IOwsr1t1pzok3D/2H/8EllPSBZzgVuE z8FoGAEbh/yU1kMYkJdauk1e5WaFN4maiFPBGm3EUUNuk73CNh94JYcSmj0pG/MF76yH tIXHB8cpXlxXhFOlf86n48yl4haLrZY4hXz2IiU0hChnvRhldxd9Gb5qkc0d1CIVeS0p TnPw== X-Gm-Message-State: AOAM530qmhAy+a88iqI3pif3E+VN3lI6LKzSZn0VxIBlpbqi2k1wNnKk +z0MfBCg47k4mwsv9LhwoPc9yN8L79lwWQ== X-Google-Smtp-Source: ABdhPJyz3wgLc5h2AmfZNE7K5X8TRepEiBw5jT99WWL8zgw+vp6Nwisr0y7xN5NNMN85Z2+GDfjpSA== X-Received: by 2002:ac8:7485:: with SMTP id v5mr21085000qtq.314.1615209797717; Mon, 08 Mar 2021 05:23:17 -0800 (PST) Received: from [192.168.1.4] ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id 61sm7775844qtb.53.2021.03.08.05.23.16 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 08 Mar 2021 05:23:17 -0800 (PST) Subject: Re: [PATCH 02/52] linux: Add futimes test From: Adhemerval Zanella To: Florian Weimer , Adhemerval Zanella via Libc-alpha References: <20210305201518.798584-1-adhemerval.zanella@linaro.org> <20210305201518.798584-3-adhemerval.zanella@linaro.org> <8735x99w82.fsf@oldenburg.str.redhat.com> Message-ID: <7c525cd3-e3ca-4e27-d085-7b336ea7540f@linaro.org> Date: Mon, 8 Mar 2021 10:23:14 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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: Mon, 08 Mar 2021 13:23:19 -0000 On 08/03/2021 10:02, Adhemerval Zanella wrote: > > > On 05/03/2021 17:33, Florian Weimer wrote: >> * Adhemerval Zanella via Libc-alpha: >> >>> +#ifndef struct_stat >>> +# define struct_stat struct stat64 >>> +#endif >> >> This isn't necessary because xfstat is hard-wired to struct stat64. > > This is necessary once the time64 support is done on a subsequent patch, > but I will move this snippet later in the set. > In fact it is not really required because it was a leftover when I had not fix tiem64 support for LARFGEFILE64. I will remove it and adjust the libsupport accordingly.