Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750791AbWJPNX2 (ORCPT ); Mon, 16 Oct 2006 09:23:28 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750832AbWJPNX2 (ORCPT ); Mon, 16 Oct 2006 09:23:28 -0400 Received: from palinux.external.hp.com ([192.25.206.14]:46976 "EHLO mail.parisc-linux.org") by vger.kernel.org with ESMTP id S1750791AbWJPNX1 (ORCPT ); Mon, 16 Oct 2006 09:23:27 -0400 Date: Mon, 16 Oct 2006 07:23:27 -0600 From: Matthew Wilcox To: Amol Lad Cc: linux kernel , kernel Janitors Subject: Re: [KJ] [PATCH] drivers/serial/dz.c: Remove save_flags()/cli()/restore_flags() Message-ID: <20061016132326.GE22289@parisc-linux.org> References: <1160983732.19143.420.camel@amol.verismonetworks.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1160983732.19143.420.camel@amol.verismonetworks.com> User-Agent: Mutt/1.5.13 (2006-08-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3216 Lines: 101 On Mon, Oct 16, 2006 at 12:58:52PM +0530, Amol Lad wrote: > Replaced save_flags()/cli()/restore_flags() pair with spin_lock > alternatives. > > For this case, I believe spin lock plays no role but I also do not have > a better way. I think there's a better way. Here's the full stretch covered by that: save_flags(flags); cli(); #ifndef CONFIG_SERIAL_DZ_CONSOLE /* reset the chip */ dz_reset(&dz_ports[0]); #endif /* order matters here... the trick is that flags is updated... in request_irq - to immediatedly obliterate it is unwise. */ restore_flags(flags); Now, we can obviously move the junk inside the ifdef: #ifndef CONFIG_SERIAL_DZ_CONSOLE save_flags(flags); cli(); /* reset the chip */ dz_reset(&dz_ports[0]); restore_flags(flags); #endif Now, there's only one other place that dz_reset is called from, and to be honest, it looks like it's missing some locking too. Looking at the other uses of spin_lock within this file, we can see that it's used to protect the DZ_ ports. So I think a better patch would look like this: diff --git a/drivers/serial/dz.c b/drivers/serial/dz.c index 8a98aae..de7a0b1 100644 --- a/drivers/serial/dz.c +++ b/drivers/serial/dz.c @@ -661,6 +661,8 @@ static void __init dz_init_ports(void) static void dz_reset(struct dz_port *dport) { + unsigned long flags; + spin_lock_irqsave((&dport->port.lock, flags); dz_out(dport, DZ_CSR, DZ_CLR); while (dz_in(dport, DZ_CSR) & DZ_CLR); @@ -670,6 +672,7 @@ static void dz_reset(struct dz_port *dpo /* enable scanning */ dz_out(dport, DZ_CSR, DZ_MSE); + spin_unlock_irqrestore((&dport->port.lock, flags); } #ifdef CONFIG_SERIAL_DZ_CONSOLE @@ -783,19 +786,11 @@ int __init dz_init(void) dz_init_ports(); - save_flags(flags); - cli(); - #ifndef CONFIG_SERIAL_DZ_CONSOLE /* reset the chip */ dz_reset(&dz_ports[0]); #endif - /* order matters here... the trick is that flags - is updated... in request_irq - to immediatedly obliterate - it is unwise. */ - restore_flags(flags); - if (request_irq(dz_ports[0].port.irq, dz_interrupt, IRQF_DISABLED, "DZ", &dz_ports[0])) panic("Unable to register DZ interrupt"); But looking at the driver, there's some places we're missing locking. In dz_set_mctrl(), we read-modify-write DZ_TCR without holding a lock. We also do that in dz_console_setup(), but I suspect we're guaranteed by higher levels not to race with anything. I suspect it can't hit us in practice (due to the dz driver being for hardware that's UP only, but maybe with preemption, it could bite us ...), but there's no locking in the interrupt handler. I think dz_transmit_chars() needs locking against dz_console_putchar(), for example. Anyway, that's enough to be going on with. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/