From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from galois.linutronix.de ([193.142.43.55]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1lH02m-0000YH-QR for linux-um@lists.infradead.org; Tue, 02 Mar 2021 08:06:13 +0000 From: John Ogness Subject: Re: [PATCH next v3 01/15] um: synchronize kmsg_dumper In-Reply-To: References: <20210225202438.28985-1-john.ogness@linutronix.de> <20210225202438.28985-2-john.ogness@linutronix.de> Date: Tue, 02 Mar 2021 09:06:07 +0100 Message-ID: <87y2f6yo7k.fsf@jogness.linutronix.de> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-um" Errors-To: linux-um-bounces+geert=linux-m68k.org@lists.infradead.org To: Petr Mladek Cc: Sergey Senozhatsky , Richard Weinberger , Jeff Dike , linux-um@lists.infradead.org, linux-kernel@vger.kernel.org, Steven Rostedt , Sergey Senozhatsky , Thomas Gleixner , Andy Shevchenko , Thomas Meyer , Anton Ivanov On 2021-03-01, Petr Mladek wrote: >> > diff --git a/arch/um/kernel/kmsg_dump.c b/arch/um/kernel/kmsg_dump.c >> > index 6516ef1f8274..4869e2cc787c 100644 >> > --- a/arch/um/kernel/kmsg_dump.c >> > +++ b/arch/um/kernel/kmsg_dump.c >> > @@ -1,5 +1,6 @@ >> > // SPDX-License-Identifier: GPL-2.0 >> > #include >> > +#include >> > #include >> > #include >> > #include >> > @@ -9,6 +10,7 @@ >> > static void kmsg_dumper_stdout(struct kmsg_dumper *dumper, >> > enum kmsg_dump_reason reason) >> > { >> > + static DEFINE_SPINLOCK(lock); >> > static char line[1024]; >> > struct console *con; >> > size_t len = 0; >> > @@ -29,11 +31,16 @@ static void kmsg_dumper_stdout(struct kmsg_dumper *dumper, >> > if (con) >> > return; >> > >> > + if (!spin_trylock(&lock)) >> >> I have almost missed this. It is wrong. The last version correctly >> used >> >> if (!spin_trylock_irqsave(&lock, flags)) >> >> kmsg_dump(KMSG_DUMP_PANIC) is called in panic() with interrupts >> disabled. We have to store the flags here. > > Ah, I get always confused with these things. spin_trylock() can > actually get called in a context with IRQ disabled. So it is not > as wrong as I thought. > > But still. panic() and kmsg_dump() can be called in IRQ context. > So, this function might be called in IRQ context. So, it feels > more correct to use the _irqsafe variant here. > > I know that there is the trylock so it probably does not matter much. > Well, the disabled irq might help to serialize the two calls when > one is in normal context and the other would happen in IRQ one. > > As I said, using _irqsafe variant looks better to me. For the record, the reason I removed the _irqsave for v3 is because I felt like it was misleading, appearing to be necessary when it is not. I think anyone could argue both sides. But it really doesn't matter (especially for arch/um). I will use the _irqsave variant for v4. I am OK with that. John Ogness _______________________________________________ linux-um mailing list linux-um@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-um