From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] sky2: fix hard hang with netconsoling and iface going up Date: Mon, 2 Feb 2009 10:01:42 -0800 Message-ID: <20090202100142.47fad247@extreme> References: <20090127120129.GA9696@x200.localdomain> <20090127132718.GA10001@x200.localdomain> <20090129.170043.180340152.davem@davemloft.net> <20090130115907.GA22534@x200.localdomain> <20090201223853.GB6567@x200.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: David Miller , jgarzik@pobox.com, netdev@vger.kernel.org To: Alexey Dobriyan Return-path: Received: from smtp1.linux-foundation.org ([140.211.169.13]:45718 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752775AbZBBSCy (ORCPT ); Mon, 2 Feb 2009 13:02:54 -0500 In-Reply-To: <20090201223853.GB6567@x200.localdomain> Sender: netdev-owner@vger.kernel.org List-ID: On Mon, 2 Feb 2009 01:38:53 +0300 Alexey Dobriyan wrote: > On Fri, Jan 30, 2009 at 02:59:07PM +0300, Alexey Dobriyan wrote: > > On Thu, Jan 29, 2009 at 05:00:43PM -0800, David Miller wrote: > > > From: Alexey Dobriyan > > > Date: Tue, 27 Jan 2009 16:27:18 +0300 > > > > > > > [PATCH] sky2: fix hard hang with netconsoling and iface going up > > > > > > > > Printing anything over netconsole before hw is up and running is, > > > > of course, not going to work. > > > > > > > > Signed-off-by: Alexey Dobriyan > > > > > > Alexey, can you get this tested by the reporter to make sure > > > it really fixes the hang? > > > > I'm the reporter and tester and using this patch successfully. :-) > > > > > Once it's been tested, I'll apply it. > > > > As for other printks, someone with 8139cp should experience the same bug. > > Strangely enough, 8139cp survives with no message printed and no hang or > anything. But this is with qemu/kvm. > > static int cp_open (struct net_device *dev) > { > struct cp_private *cp = netdev_priv(dev); > int rc; > > if (netif_msg_ifup(cp)) > printk(KERN_DEBUG "%s: enabling interface\n", dev->name); > > rc = cp_alloc_rings(cp); > ... Unlike other drivers, sky2 calls its own up routine on resume. In this case, the netif_running flag is already set.