Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp453695ybl; Wed, 21 Aug 2019 23:01:11 -0700 (PDT) X-Google-Smtp-Source: APXvYqzO8bF7ybh+R3K9SOCoEoApdbZTy/uzSQ/BJeNR2z/GDxFj2D/EvwmFpVORjA28fc5znrWn X-Received: by 2002:a63:b904:: with SMTP id z4mr31532604pge.388.1566453671113; Wed, 21 Aug 2019 23:01:11 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1566453671; cv=none; d=google.com; s=arc-20160816; b=p8AXVGLlL+2TcZhVVO0flNo5zX7d5HhczGFwPYdrcDXhW1c9xbftNxul69BVEWXYp0 6KJrYSQi70VW5kKh2kam6Is8mfs9svwjySDPbOF1wAtfVQ6kA7TwEOT/OqiXNVb+klzO Qu9M+cHTPz2eGwXgWs+zaSYxkBPmCfciIy6vCU/K/GWpeuqUniHQbVCVLptJjBj9MsE9 QC+EfY2jwC0bBJ9vAoSbQoUdFWczJuzGMwx0NB9KjqaXelv0xH6pXOzavxjyqwhcyOfT OR142JJt3ZxHEI7NR8+VxDVlSmj9wKBpSBQUyf/E92Nwz2YdpVAxdtDjBQrYHyHLo4sO COKg== 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=6Fu7p7qkC1rqgX+pDiiXlVtwtN0J4k6VNhJsmrLHi/4=; b=mQhjRcC2KO1bXqCkfqWnZz7a8nkIEbUOaHmbSry2CNh7QVULPvQ7d/P648eMD4/FWs TpQQQw4UDKEJUHRu2bZML2kIX1FllH1vp6OPm6oUw9jN2+74Clu/2La+PUXaNFxT5VQJ q7fXQEXk8P0wqShsKp2liv1nvw+o56BBu9ipibeQB3xB8LHmeIzy0XUtAQwGbidWiVeA OHDup1HrmKy9DF4lFCNzNEIL+yG1E3WpSMZZiwSKrALHCAT7XMC3HSaV9zHqyDt0zxZ4 8gVyP5XcIE5MSz6MceQZ8UbuW6U093+OvBKWPoyAa4TScuYCTH0lxe2ssC+wGkVxY8Cz T3fw== 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 h15si16444787plr.87.2019.08.21.23.00.44; Wed, 21 Aug 2019 23:01:11 -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 S1730663AbfHVBqq (ORCPT + 99 others); Wed, 21 Aug 2019 21:46:46 -0400 Received: from verein.lst.de ([213.95.11.211]:42627 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726785AbfHVBqp (ORCPT ); Wed, 21 Aug 2019 21:46:45 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 79BEB68BFE; Thu, 22 Aug 2019 03:46:42 +0200 (CEST) Date: Thu, 22 Aug 2019 03:46:42 +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 , Andreas Schwab Subject: Re: [PATCH v3 1/3] RISC-V: Issue a local tlbflush if possible. Message-ID: <20190822014642.GA11922@lst.de> References: <20190822004644.25829-1-atish.patra@wdc.com> <20190822004644.25829-2-atish.patra@wdc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190822004644.25829-2-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 Wed, Aug 21, 2019 at 05:46:42PM -0700, Atish Patra wrote: > In RISC-V, tlb flush happens via SBI which is expensive. If the local > cpu is the only cpu in cpumask, there is no need to invoke a SBI call. > > Just do a local flush and return. > > Signed-off-by: Atish Patra > --- > arch/riscv/mm/tlbflush.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/arch/riscv/mm/tlbflush.c b/arch/riscv/mm/tlbflush.c > index df93b26f1b9d..36430ee3bed9 100644 > --- a/arch/riscv/mm/tlbflush.c > +++ b/arch/riscv/mm/tlbflush.c > @@ -2,6 +2,7 @@ > > #include > #include > +#include > #include > > void flush_tlb_all(void) > @@ -13,9 +14,23 @@ static void __sbi_tlb_flush_range(struct cpumask *cmask, unsigned long start, > unsigned long size) > { > struct cpumask hmask; > + unsigned int cpuid = get_cpu(); > > + if (!cmask) { > + riscv_cpuid_to_hartid_mask(cpu_online_mask, &hmask); > + goto issue_sfence; > + } > + > + if (cpumask_test_cpu(cpuid, cmask) && cpumask_weight(cmask) == 1) { > + local_flush_tlb_all(); > + goto done; > + } I think a single core on a SMP kernel is a valid enough use case given how litte distros still have UP kernels. So Maybe this shiuld rather be: if (!cmask) cmask = cpu_online_mask; if (cpumask_test_cpu(cpuid, cmask) && cpumask_weight(cmask) == 1) { local_flush_tlb_all(); } else { riscv_cpuid_to_hartid_mask(cmask, &hmask); sbi_remote_sfence_vma(hmask.bits, start, size); }