[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080718232748.GA18224@martell.zuzino.mipt.ru>
Date: Sat, 19 Jul 2008 03:27:48 +0400
From: Alexey Dobriyan <adobriyan@...il.com>
To: thomas.mingarelli@...com
Cc: wim@...ana.be, linux-kernel@...r.kernel.org
Subject: [PATCH] hpwdt: don't use static flags
Static (read: global) is potential problem. Two threads can corrupt
each other's interrupt status, better avoid this.
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
drivers/watchdog/hpwdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/watchdog/hpwdt.c
+++ b/drivers/watchdog/hpwdt.c
@@ -420,7 +420,7 @@ static int __devinit detect_cru_service(void)
static int hpwdt_pretimeout(struct notifier_block *nb, unsigned long ulReason,
void *data)
{
- static unsigned long rom_pl;
+ unsigned long rom_pl;
static int die_nmi_called;
if (ulReason != DIE_NMI && ulReason != DIE_NMI_IPI)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists