Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261684AbVDRGIz (ORCPT ); Mon, 18 Apr 2005 02:08:55 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261687AbVDRGIz (ORCPT ); Mon, 18 Apr 2005 02:08:55 -0400 Received: from arnor.apana.org.au ([203.14.152.115]:41232 "EHLO arnor.apana.org.au") by vger.kernel.org with ESMTP id S261684AbVDRGIv (ORCPT ); Mon, 18 Apr 2005 02:08:51 -0400 Date: Mon, 18 Apr 2005 16:07:44 +1000 To: Shaun Reitan Cc: linux-kernel@vger.kernel.org, stable@kernel.org Subject: Re: kernel panic - not syncing: Fatal exception in interupt Message-ID: <20050418060744.GA5057@gondor.apana.org.au> References: <03f201c53aeb$a42d1270$0201a8c0@ndciwkst01> <023b01c53f3b$a8083e20$0201a8c0@ndciwkst01> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6+20040907i From: Herbert Xu Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2378 Lines: 71 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Apr 17, 2005 at 08:32:42PM +0000, Shaun Reitan wrote: > OK, finally got a full dump from the serial console! Here is it! This was fixed about a month ago. Here is the patch that did it. Perhaps it's time to include this in 2.6.11.*? Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="1.2009.20.2" # This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2005/03/14 21:22:31-08:00 bdschuym@pandora.be # [EBTABLES]: Fix smp race. # # The patch below fixes an smp race that happens on such systems under # heavy load. # This bug was reported and solved by Steve Herrell # # # Signed-off-by: Bart De Schuymer # Signed-off-by: David S. Miller # # net/bridge/netfilter/ebtables.c # 2005/03/14 21:22:13-08:00 bdschuym@pandora.be +2 -1 # [EBTABLES]: Fix smp race. # # The patch below fixes an smp race that happens on such systems under # heavy load. # This bug was reported and solved by Steve Herrell # # # Signed-off-by: Bart De Schuymer # Signed-off-by: David S. Miller # diff -Nru a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c --- a/net/bridge/netfilter/ebtables.c 2005-04-18 15:59:25 +10:00 +++ b/net/bridge/netfilter/ebtables.c 2005-04-18 15:59:25 +10:00 @@ -179,9 +179,10 @@ struct ebt_chainstack *cs; struct ebt_entries *chaininfo; char *base; - struct ebt_table_info *private = table->private; + struct ebt_table_info *private; read_lock_bh(&table->lock); + private = table->private; cb_base = COUNTER_BASE(private->counters, private->nentries, smp_processor_id()); if (private->chainstack) --EeQfGwPcQSOJBaQU-- - 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/