Received: by 2002:a25:31c3:0:0:0:0:0 with SMTP id x186csp1191409ybx; Thu, 7 Nov 2019 08:31:07 -0800 (PST) X-Google-Smtp-Source: APXvYqy69KDSGUmbTS5q+VpsSRWybBw9dQW1+sOLkmlt/btpF0hCkwn/aM7PIyREG2oOQtxX1szK X-Received: by 2002:a17:906:194a:: with SMTP id b10mr3908839eje.123.1573144267287; Thu, 07 Nov 2019 08:31:07 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1573144267; cv=none; d=google.com; s=arc-20160816; b=abCiw8BH8AZTMfw1LDXHqjPAZ8QMBX4BQrizxXNToy090PHiPEnRvJOc/e9v/13YZT O7osze8snUy54lndLcMKVO6qnws8fcv2B8hMp2daaFVCy23OsDWlS/ActXffIpKUTvbu SZwrs2G2rbSk2GAGal7oaCpucEt7o2BVjmLmsEqHiKawjKfAsKIk+CvzaMfJiz+N6P2p /EO3Bv4xCq4XlQgBMYWeLw7WAKHB5+WkwFeKV2cyz5ZQNGBBAxPpvFqKPUx/gSk5AR1O 90ifUKsqbzhBpWHrqyZMNuM67J6Mgx0joRA+vgCiszzoxiMA0+NWpp/P8hV3JvvH2kqj XnQw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=oZsFfzrwonvCKmR5I0m7GtztjOUW0IY4TTGKki6pl8A=; b=Z5hcwNVX3tXm8OKGNMNy+ewq+hwLkW2ydPS0VkS4RlwEMGlvcaezoBYlSSZSKGTmRH qm8VrlUG5MAGy+0yuKNYlCGNiE3tfXgxJwHfYfP12dd2VjLYor4JjgxsUBSr/eBFY54x Et0lvCQpRLEmBMncAJ9HjiEl5wROEW1UYpGKb1S0KddTbBiQuyB1zoa32zGqJJuhHqBC n0c/IJaKNNg/kXcDaV6Q4YyiDzZOuscFNBiZdjZhC4YdohtqiV07o7MVqvIAm41aWuiw akUkq373z7e+/YlhzhvkOp4a4IREhTJ/BDuLAxD2dhB/TETsTpIgl2mspxh1OlTSyQyl S/8w== 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 r20si1645031edm.17.2019.11.07.08.30.44; Thu, 07 Nov 2019 08:31:07 -0800 (PST) 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 S2389269AbfKGQ2q (ORCPT + 99 others); Thu, 7 Nov 2019 11:28:46 -0500 Received: from Galois.linutronix.de ([193.142.43.55]:48580 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726231AbfKGQ2p (ORCPT ); Thu, 7 Nov 2019 11:28:45 -0500 Received: from bigeasy by Galois.linutronix.de with local (Exim 4.80) (envelope-from ) id 1iSkeI-0001HM-HV; Thu, 07 Nov 2019 17:28:42 +0100 Date: Thu, 7 Nov 2019 17:28:42 +0100 From: Sebastian Andrzej Siewior To: Dennis Zhou Cc: linux-kernel@vger.kernel.org, Tejun Heo , Christoph Lameter , Thomas Gleixner , Peter Zijlstra , "Paul E. McKenney" Subject: Re: [PATCH] percpu-refcount: Use normal instead of RCU-sched" Message-ID: <20191107162842.2qgd3db2cjmmsxeh@linutronix.de> References: <20191002112252.ro7wpdylqlrsbamc@linutronix.de> <20191107091319.6zf5tmdi54amtann@linutronix.de> <20191107161749.GA93945@dennisz-mbp> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20191107161749.GA93945@dennisz-mbp> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019-11-07 11:17:49 [-0500], Dennis Zhou wrote: > Hello, Hi, > I just want to clarify a little bit. Is this patch aimed at fixing an > issue with RT kernels specifically? Due to the implications of preempt_disable() on RT kernels it fixes problems with RT kernels. > It'd also be nice to have the > numbers as well as if the kernel was RT or non-RT. The benchmark was done on a CONFIG_PREEMPT kernel. As said in the commit log, the numbers were mostly the same, I can re-run the test and post numbers if you want them. This patch makes no difference on PREEMPT_NONE or PREEMPT_VOLUNTARY kernels. > Thanks, > Dennis Sebastian