From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DC4DDC43331 for ; Mon, 11 Nov 2019 12:44:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BAC8B21925 for ; Mon, 11 Nov 2019 12:44:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726977AbfKKMos (ORCPT ); Mon, 11 Nov 2019 07:44:48 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:48392 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726845AbfKKMor (ORCPT ); Mon, 11 Nov 2019 07:44:47 -0500 Received: from p54ac5540.dip0.t-ipconnect.de ([84.172.85.64] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iU93T-00015J-4X; Mon, 11 Nov 2019 12:44:27 +0000 Date: Mon, 11 Nov 2019 13:44:26 +0100 From: Christian Brauner To: Arnd Bergmann Cc: y2038@lists.linaro.org, Benjamin Herrenschmidt , Paul Mackerras , Michael Ellerman , Alexander Viro , "Rafael J. Wysocki" , Pavel Machek , Len Brown , John Stultz , Thomas Gleixner , linux-kernel@vger.kernel.org, Stephen Boyd , Christian Brauner , linuxppc-dev@lists.ozlabs.org, linux-fsdevel@vger.kernel.org, linux-api@vger.kernel.org, linux-pm@vger.kernel.org Subject: Re: [PATCH 12/23] y2038: syscalls: change remaining timeval to __kernel_old_timeval Message-ID: <20191111124425.bmsdg5e4ikpdh5bu@wittgenstein> References: <20191108210236.1296047-1-arnd@arndb.de> <20191108211323.1806194-3-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20191108211323.1806194-3-arnd@arndb.de> User-Agent: NeoMutt/20180716 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, Nov 08, 2019 at 10:12:11PM +0100, Arnd Bergmann wrote: > All of the remaining syscalls that pass a timeval (gettimeofday, utime, > futimesat) can trivially be changed to pass a __kernel_old_timeval > instead, which has a compatible layout, but avoids ambiguity with > the timeval type in user space. > > Signed-off-by: Arnd Bergmann Seems reasonable. Acked-by: Christian Brauner