Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp692920ybl; Thu, 22 Aug 2019 03:27:42 -0700 (PDT) X-Google-Smtp-Source: APXvYqyHwdxyV1bmMBKvCtsSCOHz3MPpgSDGd4SMCjJz2ELlIV+qPWUHweCpogvDAJETrNWVOOx1 X-Received: by 2002:a17:90a:a46:: with SMTP id o64mr4694853pjo.90.1566469662372; Thu, 22 Aug 2019 03:27:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1566469662; cv=none; d=google.com; s=arc-20160816; b=Bup7mVcYTAVLgn5prc0JpFUxBXXbMfXMjpEV3l8DEUgKXGcJ52OrqbpOkt7UV+u9al AZjcfc7atrhez5KWaLLN/EMReXwEiZSS7SvmQE/edCfHYyCCrpF34sReXNUHqqMbILLV iXptsooEFIS+4RwA3nWig+3Vgw/7/ytPxiw8O/c3lMxBGYft5C4UQCHWPT0f+tUC26dx OvQoQFxn29HyTMcxjMep/TI+5YXsIPKUiF+2Yp4BhIXH594YvlFzAo6n4kNp36MijffL q+X1ReQe8jLXxTenSXJ+51UxmsbZEMvbJ5pysLehRhOndLwBBZ0pNQts/obbhxl6quxI CmQg== 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-transfer-encoding:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=I9dwRvyYoO/SL0QJhwQLhrfOivRE7fEY2btN29WvyLQ=; b=G/aQqf8pPCyzn9p4e0tsg0yLLuNOWhBJZlhqWcKbwYQDLYCneOPvf2twlcTy6v95Qr bO60EyNvV2rpzosiND7dmsdAmjikIuzQhuA02sIMHflI+tCx0sWP27i5K1jHD49zx5IK sXrWcumPIcitKPhMHVFm9TS+8pjTKV7au+j7X3BAHdLxi0SOMaHbSsgQXmnK5ZbIajI+ H1/KxTy1i8rab0/RkywyhOHBHwHuvkSLJ8REAFqeaI2QgOmcGVm0Zs05UfsZiZsdSU1o c5VDZWeytIBNE6YraXTpLRe0wieaxqIRK8ahOW1Be0XsZdVbRMWyZrg98KDWJkkn6EVP a+Pw== 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 i2si16544005pgk.534.2019.08.22.03.27.27; Thu, 22 Aug 2019 03:27:42 -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 S1732011AbfHVIL4 (ORCPT + 99 others); Thu, 22 Aug 2019 04:11:56 -0400 Received: from verein.lst.de ([213.95.11.211]:44790 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725783AbfHVIL4 (ORCPT ); Thu, 22 Aug 2019 04:11:56 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 999B968C4E; Thu, 22 Aug 2019 10:11:53 +0200 (CEST) Date: Thu, 22 Aug 2019 10:11:53 +0200 From: Christoph Hellwig To: Atish Patra Cc: linux-kernel@vger.kernel.org, Albert Ou , linux-riscv@lists.infradead.org, Palmer Dabbelt , Paul Walmsley , Christoph Hellwig , Anup Patel Subject: Re: [PATCH v4 3/3] RISC-V: Issue a tlb page flush if possible Message-ID: <20190822081153.GC17573@lst.de> References: <20190822075151.24838-1-atish.patra@wdc.com> <20190822075151.24838-4-atish.patra@wdc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20190822075151.24838-4-atish.patra@wdc.com> 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 Thu, Aug 22, 2019 at 12:51:51AM -0700, Atish Patra wrote: > If tlbflush request is for page only, there is no need to do a > complete local tlb shootdown. > > Just do a local tlb flush for the given address. Looks good, although I suspect in many cases even doing multiple single-page sfence.vma calls might be cheaper than the global one. But I think that is worth a Ń•eparate discussion, preferably with actual numbers. Reviewed-by: Christoph Hellwig