From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E5383C678D4 for ; Thu, 2 Mar 2023 13:24:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230006AbjCBNYW convert rfc822-to-8bit (ORCPT ); Thu, 2 Mar 2023 08:24:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54724 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229449AbjCBNYV (ORCPT ); Thu, 2 Mar 2023 08:24:21 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D656018B1F for ; Thu, 2 Mar 2023 05:24:19 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 67A06615C5 for ; Thu, 2 Mar 2023 13:24:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 465E0C433EF; Thu, 2 Mar 2023 13:24:17 +0000 (UTC) Date: Thu, 2 Mar 2023 08:24:14 -0500 From: Steven Rostedt To: John Stultz Cc: LKML , Wei Wang , Midas Chien , Kees Cook , Anton Vorontsov , "Guilherme G. Piccoli" , Tony Luck , kernel-team@android.com, Thomas Gleixner , Peter Zijlstra , Sebastian Andrzej Siewior Subject: Re: [PATCH] pstore: Revert pmsg_lock back to a normal mutex Message-ID: <20230302082414.77613351@gandalf.local.home> In-Reply-To: <20230302062741.483079-1-jstultz@google.com> References: <20230302062741.483079-1-jstultz@google.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 2 Mar 2023 06:27:41 +0000 John Stultz wrote: > This reverts commit 76d62f24db07f22ccf9bc18ca793c27d4ebef721. > > So while priority inversion on the pmsg_lock is an occasional > problem that an rt_mutex would help with, in uses where logging > is writing to pmsg heavily from multiple threads, the pmsg_lock > can be heavily contended. > > Normal mutexes can do adaptive spinning, which keeps the > contention overhead fairly low maybe adding on the order of 10s > of us delay waiting, but the slowpath w/ rt_mutexes makes the > blocked tasks sleep & wake. This makes matters worse when there > is heavy contentention, as it just allows additional threads to > run and line up to try to take the lock. > > It devolves to a worse case senerio where the lock acquisition > and scheduling overhead dominates, and each thread is waiting on > the order of ~ms to do ~us of work. > > Obviously, having tons of threads all contending on a single > lock for logging is non-optimal, so the proper fix is probably > reworking pstore pmsg to have per-cpu buffers so we don't have > contention. Or perhaps we should convert rt_mutex to have adaptive spinning too. This will likely be needed for PREEMPT_RT anyway. IIRC, in the PREEMPT_RT patch, only the spinlock converted rt_mutexes used adaptive spinning and the argument against converting the mutex to rt_mutex to adaptive spinning was because the normal one (at that time) did not have it, and we wanted to keep it the same as mainline. But it appears that that reason is no longer the case, and perhaps the real answer is to have all mutexes have adaptive spinning? -- Steve > > But in the short term, lets revert the change to the rt_mutex > and go back to normal mutexes to avoid a potentially major > performance regression. > > Cc: Wei Wang > Cc: Midas Chien > Cc: Chunhui Li (李春辉)" > Cc: Steven Rostedt > Cc: Kees Cook > Cc: Anton Vorontsov > Cc: "Guilherme G. Piccoli" > Cc: Tony Luck > Cc: kernel-team@android.com > Fixes: 76d62f24db07 ("pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion") > Reported-by: Chunhui Li (李春辉)" > Signed-off-by: John Stultz > --- > fs/pstore/pmsg.c | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/fs/pstore/pmsg.c b/fs/pstore/pmsg.c > index ab82e5f05346..b31c9c72d90b 100644 > --- a/fs/pstore/pmsg.c > +++ b/fs/pstore/pmsg.c > @@ -7,10 +7,9 @@ > #include > #include > #include > -#include > #include "internal.h" > > -static DEFINE_RT_MUTEX(pmsg_lock); > +static DEFINE_MUTEX(pmsg_lock); > > static ssize_t write_pmsg(struct file *file, const char __user *buf, > size_t count, loff_t *ppos) > @@ -29,9 +28,9 @@ static ssize_t write_pmsg(struct file *file, const char __user *buf, > if (!access_ok(buf, count)) > return -EFAULT; > > - rt_mutex_lock(&pmsg_lock); > + mutex_lock(&pmsg_lock); > ret = psinfo->write_user(&record, buf); > - rt_mutex_unlock(&pmsg_lock); > + mutex_unlock(&pmsg_lock); > return ret ? ret : count; > } >