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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 1731AC35E0E for ; Tue, 25 Feb 2020 21:19:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E83742176D for ; Tue, 25 Feb 2020 21:19:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729036AbgBYVTx (ORCPT ); Tue, 25 Feb 2020 16:19:53 -0500 Received: from isilmar-4.linta.de ([136.243.71.142]:49662 "EHLO isilmar-4.linta.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728585AbgBYVTw (ORCPT ); Tue, 25 Feb 2020 16:19:52 -0500 X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES X-isilmar-external: YES Received: from light.dominikbrodowski.net (brodo.linta [10.1.0.102]) by isilmar-4.linta.de (Postfix) with ESMTPSA id 52854200A53; Tue, 25 Feb 2020 21:19:50 +0000 (UTC) Received: by light.dominikbrodowski.net (Postfix, from userid 1000) id 566A120BDF; Tue, 25 Feb 2020 22:18:21 +0100 (CET) Date: Tue, 25 Feb 2020 22:18:21 +0100 From: Dominik Brodowski To: Brian Gerst Cc: linux-kernel@vger.kernel.org, x86@kernel.org, Thomas Gleixner , Ingo Molnar , Borislav Petkov , "H . Peter Anvin" , Andy Lutomirski Subject: Re: [PATCH v2 5/8] x86: Move 32-bit compat syscalls to common location Message-ID: <20200225211821.GE3954@light.dominikbrodowski.net> References: <20200224181757.724961-1-brgerst@gmail.com> <20200224181757.724961-6-brgerst@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200224181757.724961-6-brgerst@gmail.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 24, 2020 at 01:17:54PM -0500, Brian Gerst wrote: > Move the 32-bit wrappers for syscalls that take 64-bit arguments (loff_t) > to a common location so that native 32-bit can use them in preparation for > enabling pt_regs-based syscalls. > > Signed-off-by: Brian Gerst Reviewed-by: Dominik Brodowski Thanks, Dominik