Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp2784482yba; Mon, 22 Apr 2019 12:56:10 -0700 (PDT) X-Google-Smtp-Source: APXvYqx5ldaP466/b6CrTf3zpRHaSjCHQ8gxESe6aaET6lZGifjVXL26wvCnrErBx6efmTof45t3 X-Received: by 2002:a65:524a:: with SMTP id q10mr19980351pgp.224.1555962970789; Mon, 22 Apr 2019 12:56:10 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1555962970; cv=none; d=google.com; s=arc-20160816; b=GcX5Wg29vp4NX1JyoOW5Kzdjd/MuNSGMdhsPtMZUtaW0WVn45A7uJd7jlz8p+hdLzJ 6yOeC0to/ydluNMoJCOve6rsu4EKPWkN3ja8PFskooeer3tU9o5+l2koCTVBk/xwoClM QynWsJg5lspYgDWSC06Nrk+FE15YweO2UHYunICPeeLYqbBAd199BTTrl4BTiy2MWEqM HpjZNBjlnJxdlt/W/8cNqadVJFBz9hMoGjqr7Vm3F5u7WfgOZDV0EKn4J/aEZBP9dc1C nMpNRxBTlSePv9oLf7K2n6onYHqxdbdn4c6S5vlZqeYMoAUjZNhJNmsH7WSOuePEPUQ0 RnfA== 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=v9Ab9Tj+RVCU4cq2A1m0KjcVYNWbGNVS0C8seFizgB4=; b=JCHK6iOBY75LGyU9HJvytYJFh8PS5lAneZC1iLV3rls/463kh3bpyQvILa5IktijKy 9JVr+5WdeXi6LVArAUblb1ksuttgZ3XJTqrT7dIlI1PI68cTp3JHMVhCNB2g0/I06Xf6 EOzEtWXTv3qQvHD1rVGuZ95gaMzVTCIqxHJAdh94ImWDaDikvGnTV6UIMsGI9m7oAqQh TdiXuG4AH4ZmPibQai4eVqYairtQ5HsBX7Yn3GUuaXbf2/zF20wpfEV8iYaqGxadyyrr WMejnw/kz54kyKMX2XCXHVQ4+SP054kdkcC83GXetusNC05LnWY/esiEybg8BBO6Fwbx i/jw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k14si13286038pll.126.2019.04.22.12.55.55; Mon, 22 Apr 2019 12:56:10 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731397AbfDVTxd (ORCPT + 99 others); Mon, 22 Apr 2019 15:53:33 -0400 Received: from verein.lst.de ([213.95.11.211]:41660 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730648AbfDVTxb (ORCPT ); Mon, 22 Apr 2019 15:53:31 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id E2F5668E0F; Mon, 22 Apr 2019 21:53:09 +0200 (CEST) Date: Mon, 22 Apr 2019 21:53:08 +0200 From: Christoph Hellwig To: Alexandre Ghiti Cc: Andrew Morton , Christoph Hellwig , Russell King , Catalin Marinas , Will Deacon , Ralf Baechle , Paul Burton , James Hogan , Palmer Dabbelt , Albert Ou , Alexander Viro , Luis Chamberlain , Kees Cook , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org, linux-riscv@lists.infradead.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH v3 02/11] arm64: Make use of is_compat_task instead of hardcoding this test Message-ID: <20190422195308.GA2224@lst.de> References: <20190417052247.17809-1-alex@ghiti.fr> <20190417052247.17809-3-alex@ghiti.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190417052247.17809-3-alex@ghiti.fr> 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 17, 2019 at 01:22:38AM -0400, Alexandre Ghiti wrote: > Each architecture has its own way to determine if a task is a compat task, > by using is_compat_task in arch_mmap_rnd, it allows more genericity and > then it prepares its moving to mm/. > > Signed-off-by: Alexandre Ghiti Looks good, Reviewed-by: Christoph Hellwig