From patchwork Tue Sep 30 11:17:33 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarek Poplawski X-Patchwork-Id: 2084 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id CCC3BDDEEB for ; Tue, 30 Sep 2008 21:17:52 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752431AbYI3LRl (ORCPT ); Tue, 30 Sep 2008 07:17:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752674AbYI3LRl (ORCPT ); Tue, 30 Sep 2008 07:17:41 -0400 Received: from nf-out-0910.google.com ([64.233.182.191]:61337 "EHLO nf-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752291AbYI3LRk (ORCPT ); Tue, 30 Sep 2008 07:17:40 -0400 Received: by nf-out-0910.google.com with SMTP id d3so840952nfc.21 for ; Tue, 30 Sep 2008 04:17:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=BWFgIysCS6mnGSP41UBcQE4RN14oa769lSH7cBhFfTk=; b=ShOasziedtEF/2xfUaHP65beQih1UxOtzEZOkiA2IJoX/QrHYuhgaoDvqUjziekYEn swOdKsxbgJsGX278aX8sfZbxm5yFM//stuCWxJVijXgpFdNY/qjOBuW8PLxXqJ5XC+mW m4reHKnakzAMvrjcnnc/91zRmR95Dr2D0OSC0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=N3lgOOZg0Iml2xckANoGIF/nbdZrUR5rzAJ9nl66Kqu1yONBiWv0aAPN4XPsM1MKIo Hhkd/Z9PCTZTZu8XgdbDSSq0lRGcBQNCe9fewM4/uLS94lpr/KzSeEBfUAeqMExpsYW1 RkhLhTM8CRqXuAfJKKFZMoesvZoCxd545KYUg= Received: by 10.103.214.13 with SMTP id r13mr4758084muq.4.1222773458425; Tue, 30 Sep 2008 04:17:38 -0700 (PDT) Received: from ff.dom.local (bv170.internetdsl.tpnet.pl [80.53.205.170]) by mx.google.com with ESMTPS id s10sm1703036mue.15.2008.09.30.04.17.37 (version=SSLv3 cipher=RC4-MD5); Tue, 30 Sep 2008 04:17:37 -0700 (PDT) Date: Tue, 30 Sep 2008 11:17:33 +0000 From: Jarek Poplawski To: Bernard Pidoux F6BVP Cc: Linux Netdev List , Ralf Baechle DL5RB Subject: Re: ax25 rose Re: kernel panic linux-2.6.27-rc7 Message-ID: <20080930111733.GB6290@ff.dom.local> References: <48DF7D51.1010507@free.fr> <20080929123036.GA16954@ff.dom.local> <48E1F417.7080304@free.fr> <20080930101030.GA6290@ff.dom.local> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20080930101030.GA6290@ff.dom.local> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Tue, Sep 30, 2008 at 10:10:30AM +0000, Jarek Poplawski wrote: > On Tue, Sep 30, 2008 at 11:40:39AM +0200, Bernard Pidoux F6BVP wrote: > > Hi Jarek, > Hi Bernard, > > > > > Yes this is a vanilla kernel, which makes it interesting to debug. > > I forgot to Cc: Ralf and put it now on copy of this message. > > Thank you for the patch I applied. > > Collected data includes both events I already reported, first the > > inconsistent lock state, > > I guess this netconsole is on ne2k_pci/8390 driver? If so, try this patch, please. Jarek P. --- drivers/net/lib8390.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/net/lib8390.c b/drivers/net/lib8390.c index 00d59ab..f80dcc1 100644 --- a/drivers/net/lib8390.c +++ b/drivers/net/lib8390.c @@ -530,9 +530,9 @@ static irqreturn_t __ei_interrupt(int irq, void *dev_id) #ifdef CONFIG_NET_POLL_CONTROLLER static void __ei_poll(struct net_device *dev) { - disable_irq_lockdep(dev->irq); + disable_irq(dev->irq); __ei_interrupt(dev->irq, dev); - enable_irq_lockdep(dev->irq); + enable_irq(dev->irq); } #endif