From: Matt Mackall <mpm@selenic.com>
To: Jeff Moyer <jmoyer@redhat.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: netconsole hangs w/ alt-sysrq-t
Date: Wed, 28 Apr 2004 09:03:53 -0500 [thread overview]
Message-ID: <20040428140353.GC28459@waste.org> (raw)
In-Reply-To: <16527.42815.447695.474344@segfault.boston.redhat.com>
On Wed, Apr 28, 2004 at 08:44:47AM -0400, Jeff Moyer wrote:
> ==> Regarding Re: netconsole hangs w/ alt-sysrq-t; Matt Mackall <mpm@selenic.com> adds:
>
> mpm> On Thu, Apr 22, 2004 at 11:29:33AM -0400, Jeff Moyer wrote:
> >> If netconsole is enabled, and you hit Alt-Sysrq-t, then it will print a
> >> small amount of output to the console(s) and then hang the system. In
> >> this case, I'm using the e100 driver, and we end up exhausting the
> >> available cbs. Since we are in interrupt context, the driver's poll
> >> routine is never run, and we loop infinitely waiting for resources to
> >> free up that never will. Kernel version is 2.6.5.
>
> mpm> Can you try 2.6.6-rc2? It has a fix to congestion handling that should
> mpm> address this.
>
> Is the attached patch the change you are referring to? If so, I don't see
> how this would fix the problem. I ended up deferring netpoll writes to
> process context, which has been working fine for me. Have I missed
> something?
Well process context defeats the purpose. Ok, I've more closely read
your report and if I understand correctly, you're using the NAPI
version of e100? There's some magic NAPI bits in netpoll_poll that
might help here:
if(trapped && np->dev->poll &&
test_bit(__LINK_STATE_RX_SCHED, &np->dev->state))
np->dev->poll(np->dev, &budget);
Perhaps we need to pull the trapped test out of there. Then with any
luck, dev->hard_start_xmit will return non-zero in netpoll_send_skb,
we'll call netpoll_poll to pump the card, and we'll be able to flush
it.
--
Matt Mackall : http://www.selenic.com : Linux development and consulting
next prev parent reply other threads:[~2004-04-28 14:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-22 15:29 netconsole hangs w/ alt-sysrq-t Jeff Moyer
2004-04-25 19:15 ` Matt Mackall
2004-04-28 12:44 ` Jeff Moyer
2004-04-28 14:03 ` Matt Mackall [this message]
2004-04-28 14:07 ` Jeff Moyer
2004-04-28 14:27 ` Matt Mackall
2004-04-28 18:23 ` Jeff Moyer
2004-05-20 2:20 ` klogd, netconsole without /dev/console? Tom Oehser
2004-06-25 15:50 ` netconsole hangs w/ alt-sysrq-t Jeff Moyer
2004-06-25 23:27 ` Matt Mackall
2004-06-28 14:48 ` Jeff Moyer
2004-06-28 15:19 ` Matt Mackall
2004-06-28 16:58 ` Jeff Moyer
2004-06-29 12:36 ` Jeff Moyer
2004-07-01 16:52 ` Matt Mackall
2004-07-01 16:54 ` Jeff Moyer
2004-07-01 17:05 ` Matt Mackall
2004-07-01 17:53 ` Jeff Moyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040428140353.GC28459@waste.org \
--to=mpm@selenic.com \
--cc=jmoyer@redhat.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.