Received: by 2002:a25:1985:0:0:0:0:0 with SMTP id 127csp425182ybz; Wed, 29 Apr 2020 02:46:17 -0700 (PDT) X-Google-Smtp-Source: APiQypLfrVi2wQbZ2T9BGTnybMyxGWEGExvHPuJEJP0PZt1gn11K5s1MbvUgtf7xTUC5vMJwLqQK X-Received: by 2002:a17:906:7c11:: with SMTP id t17mr1850332ejo.73.1588153577611; Wed, 29 Apr 2020 02:46:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1588153577; cv=none; d=google.com; s=arc-20160816; b=AVuenmo9WRP4Hm3h5FBxppT6Jbiu82osFuiozpBtK0uhOf7JHFlyOuG2Kb87GN3s6c y/gAsQNoKHK3QZJFcVnDVs/G3Nsc4gXr7uTbmCkZU9lcmUCkixGZYOrZ63aSfyRYDdIk 3OKD9narn5N27dD66cEyhHJ6b8Hp6EKs0SIO+7fbzNxGi05wTlHWNKB+1Pbvaauj3CpZ ZCY4m7OUEJPjqLqf56MujsPZ5JY3GA6QI0JnBg3urkRwAqU8Spu0DZ5EsSJ6fKKnO1Rw UOWEHotA+wEy07MOKyr7635KKRIQtwTPS/s8i/NGVNOYeFxWBTK8FgD0yXcSwgnhGu2l tnBA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=9BVzrO5jAbz9UWcgdItLIQLtWFY1m6ETsidPTKP82xk=; b=DEc98LRg5i2Gh2VsxLKh674DsmYVxymAxw+YpVE0bY89p+TrDty3hG9ywGqAy/htcC s+PZ8t3WsA4wWBK3EL3mHHA+F+U8OVtchP6hq1iNRpeH7eYenreuwyMpVyPGL0QAtlkH tdW9lQObKrmxRSX/PL9QmNP1N0jlaB/UBkvhliiRnzT7+ako3mcIWEWzF8ck9BKupx08 FLgFQJuDqj9s4lnmtVTHZvbMA0ZTktHIx0sL15R8RCfgu3Bc/925Iwl/QXE8SsaOhG65 weXaB13bLNusWyLNEBTdipI78fmGnYQfNMFF9mAEiWvN9D6r+ENcyWBUU9k5d61rF33+ fX3A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id y18si3143685edr.442.2020.04.29.02.45.53; Wed, 29 Apr 2020 02:46:17 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726636AbgD2JmE (ORCPT + 99 others); Wed, 29 Apr 2020 05:42:04 -0400 Received: from verein.lst.de ([213.95.11.211]:33583 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726535AbgD2JmE (ORCPT ); Wed, 29 Apr 2020 05:42:04 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 8CE8668BFE; Wed, 29 Apr 2020 11:42:01 +0200 (CEST) Date: Wed, 29 Apr 2020 11:42:01 +0200 From: Christoph Hellwig To: Arnd Bergmann Cc: Christoph Hellwig , Andrew Morton , Alexander Viro , Jeremy Kerr , "Eric W . Biederman" , linuxppc-dev , Linux FS-devel Mailing List , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] fixup! signal: factor copy_siginfo_to_external32 from copy_siginfo_to_user32 Message-ID: <20200429094201.GA2557@lst.de> References: <20200428074827.GA19846@lst.de> <20200428195645.1365019-1-arnd@arndb.de> <20200429064458.GA31717@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 29, 2020 at 10:07:11AM +0200, Arnd Bergmann wrote: > > What do you think of this version? This one always overrides > > copy_siginfo_to_user32 for the x86 compat case to keep the churn down, > > and improves the copy_siginfo_to_external32 documentation a bit. > > Looks good to me. I preferred checking for X32 explicitly (so we can > find and kill off the #ifdef if we ever remove X32 for good), but there is > little difference in the end. Is there any realistic chance we'll get rid of x32?