From: Sean <knife@toaster.net>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Andrew Morton <akpm@linux-foundation.org>,
bugzilla-daemon@bugzilla.kernel.org, linux-media@vger.kernel.org,
USB list <linux-usb@vger.kernel.org>, Ingo Molnar <mingo@elte.hu>,
Thomas Gleixner <tglx@linutronix.de>,
"H. Peter Anvin" <hpa@zytor.com>
Subject: Re: [Bugme-new] [Bug 14564] New: capture-example sleeping function called from invalid context at arch/x86/mm/fault.c
Date: Wed, 16 Dec 2009 15:30:12 -0800 [thread overview]
Message-ID: <4B296D84.7090603@toaster.net> (raw)
In-Reply-To: <Pine.LNX.4.44L0.0912031601420.4795-100000@iolanthe.rowland.org>
Thanks, that patch definitely traps the bug. Unfortunately there are so
many debug messages that the capture-example.c times out trying to
connect to the webcam. The debug messages slow down the process enough
to make that happen. But if I modify your patch and take out the extra
debug messages, it works well. The modified patch is below.
Reproducing the bug in four separate instances I got:
ohci_hcd 0000:00:0a.0: poisoned hash at c67a285c
ohci_hcd 0000:00:0a.0: poisoned hash at c67b875c
ohci_hcd 0000:00:0a.0: poisoned hash at c67a179c
ohci_hcd 0000:00:0a.0: poisoned hash at c679c79c
Sean Lazar
--- ohci-mem.c.orig 2009-12-16 22:57:49.000000000 +0000
+++ ohci-mem.c 2009-12-16 22:49:37.000000000 +0000
@@ -103,8 +103,13 @@
{
struct td **prev = &hc->td_hash [TD_HASH_FUNC (td->td_dma)];
- while (*prev && *prev != td)
+ while (*prev && *prev != td) {
+ if ((unsigned long) *prev == 0xa7a7a7a7) {
+ ohci_info(hc, "poisoned hash at %p\n", prev);
+ return;
+ }
prev = &(*prev)->td_hash;
+ }
if (*prev)
*prev = td->td_hash;
else if ((td->hwINFO & cpu_to_hc32(hc, TD_DONE)) != 0)
Alan Stern wrote:
> On Wed, 2 Dec 2009, Sean wrote:
>
>
>> Is there anything I can do to help? This is a show stopping bug for me.
>>
>
> Here's a patch you can try. It will add a _lot_ of debugging
> information to the system log. Maybe it will help pin down the source
> of the problem.
>
> Alan Stern
>
>
>
> Index: 2.6.31/drivers/usb/host/ohci-hcd.c
> ===================================================================
> --- 2.6.31.orig/drivers/usb/host/ohci-hcd.c
> +++ 2.6.31/drivers/usb/host/ohci-hcd.c
> @@ -197,7 +197,7 @@ static int ohci_urb_enqueue (
>
> /* allocate the TDs (deferring hash chain updates) */
> for (i = 0; i < size; i++) {
> - urb_priv->td [i] = td_alloc (ohci, mem_flags);
> + urb_priv->td [i] = td_alloc (ohci, mem_flags, urb->dev, urb->ep);
> if (!urb_priv->td [i]) {
> urb_priv->length = i;
> urb_free_priv (ohci, urb_priv);
> Index: 2.6.31/drivers/usb/host/ohci-mem.c
> ===================================================================
> --- 2.6.31.orig/drivers/usb/host/ohci-mem.c
> +++ 2.6.31/drivers/usb/host/ohci-mem.c
> @@ -82,7 +82,8 @@ dma_to_td (struct ohci_hcd *hc, dma_addr
>
> /* TDs ... */
> static struct td *
> -td_alloc (struct ohci_hcd *hc, gfp_t mem_flags)
> +td_alloc (struct ohci_hcd *hc, gfp_t mem_flags, struct usb_device *udev,
> + struct usb_host_endpoint *ep)
> {
> dma_addr_t dma;
> struct td *td;
> @@ -94,6 +95,8 @@ td_alloc (struct ohci_hcd *hc, gfp_t mem
> td->hwNextTD = cpu_to_hc32 (hc, dma);
> td->td_dma = dma;
> /* hashed in td_fill */
> + ohci_info(hc, "td alloc for %s ep%x: %p\n",
> + udev->devpath, ep->desc.bEndpointAddress, td);
> }
> return td;
> }
> @@ -103,8 +106,14 @@ td_free (struct ohci_hcd *hc, struct td
> {
> struct td **prev = &hc->td_hash [TD_HASH_FUNC (td->td_dma)];
>
> - while (*prev && *prev != td)
> + ohci_info(hc, "td free %p\n", td);
> + while (*prev && *prev != td) {
> + if ((unsigned long) *prev == 0xa7a7a7a7) {
> + ohci_info(hc, "poisoned hash at %p\n", prev);
> + return;
> + }
> prev = &(*prev)->td_hash;
> + }
> if (*prev)
> *prev = td->td_hash;
> else if ((td->hwINFO & cpu_to_hc32(hc, TD_DONE)) != 0)
> Index: 2.6.31/drivers/usb/host/ohci-q.c
> ===================================================================
> --- 2.6.31.orig/drivers/usb/host/ohci-q.c
> +++ 2.6.31/drivers/usb/host/ohci-q.c
> @@ -403,7 +403,7 @@ static struct ed *ed_get (
> }
>
> /* dummy td; end of td list for ed */
> - td = td_alloc (ohci, GFP_ATOMIC);
> + td = td_alloc (ohci, GFP_ATOMIC, udev, ep);
> if (!td) {
> /* out of memory */
> ed_free (ohci, ed);
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
next prev parent reply other threads:[~2009-12-16 23:32 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bug-14564-10286@http.bugzilla.kernel.org/>
2009-11-11 23:21 ` [Bugme-new] [Bug 14564] New: capture-example sleeping function called from invalid context at arch/x86/mm/fault.c Andrew Morton
2009-11-12 16:20 ` Alan Stern
2009-12-03 5:48 ` Sean
2009-12-03 21:03 ` Alan Stern
2009-12-16 23:30 ` Sean [this message]
2009-12-17 15:22 ` Alan Stern
2009-12-29 9:19 ` Sean
2009-12-29 19:48 ` Sean
2009-12-29 21:23 ` Alan Stern
2009-12-30 0:37 ` Sean
2009-12-30 3:22 ` Alan Stern
2010-01-02 9:00 ` Sean
2010-01-02 20:43 ` Alan Stern
2010-01-03 1:56 ` Sean
2010-01-03 17:35 ` Alan Stern
2010-01-03 23:47 ` Sean
2010-01-04 16:06 ` Alan Stern
2010-01-04 20:02 ` Sean
2010-01-04 20:48 ` Alan Stern
2010-01-04 22:24 ` Sean
2010-01-05 2:40 ` Alan Stern
2010-01-05 3:32 ` Sean
2010-01-05 15:11 ` Alan Stern
2010-01-05 20:05 ` Sean
2010-01-05 21:06 ` Alan Stern
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=4B296D84.7090603@toaster.net \
--to=knife@toaster.net \
--cc=akpm@linux-foundation.org \
--cc=bugzilla-daemon@bugzilla.kernel.org \
--cc=hpa@zytor.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=stern@rowland.harvard.edu \
--cc=tglx@linutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox