From: Oliver Neukum <oliver@neukum.org>
To: Jiri Kosina <jkosina@suse.cz>
Cc: Greg KH <greg@kroah.com>,
linux-usb@vger.kernel.org, Alan Stern <stern@rowland.harvard.edu>,
lchiquitto@novell.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] USB: fix deadlock in HCD code
Date: Wed, 21 May 2008 15:32:59 +0200 [thread overview]
Message-ID: <200805211533.00221.oliver@neukum.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0805211524130.6718@jikos.suse.cz>
Am Mittwoch 21 Mai 2008 15:27:50 schrieb Jiri Kosina:
> On Wed, 21 May 2008, Oliver Neukum wrote:
>
> > > hcd_urb_list_lock is used for synchronization between IRQ and non-IRQ
> > > contexts, so the non-IRQ context has to disable IRQs in order to prevent
> > > deadlocking with IRQ context.
> > Which non-irq context is that?
>
> One example -- assume usb_submit_urb() called from non-IRQ context. Then
>
> usb_hcd_submit_urb() -> rh_urb_enqueue() -> rh_queue_status() ->
> usb_hcd_link_urb_to_ep().
>
This turns out not to be the case. Interrupts are disabled.
static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
{
int retval;
unsigned long flags;
int len = 1 + (urb->dev->maxchild / 8);
spin_lock_irqsave (&hcd_root_hub_lock, flags);
if (hcd->status_urb || urb->transfer_buffer_length < len) {
dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
retval = -EINVAL;
goto done;
}
retval = usb_hcd_link_urb_to_ep(hcd, urb);
I'll investigate.
Regards
Oliver
next prev parent reply other threads:[~2008-05-21 13:33 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-21 12:09 [PATCH] USB: fix deadlock in HCD code Jiri Kosina
2008-05-21 13:21 ` Oliver Neukum
2008-05-21 13:27 ` Jiri Kosina
2008-05-21 13:32 ` Oliver Neukum [this message]
2008-05-21 13:36 ` Jiri Kosina
2008-05-21 13:47 ` Oliver Neukum
2008-05-21 14:13 ` Alan Stern
2008-05-21 14:22 ` Jiri Kosina
2008-05-21 14:46 ` Alan Stern
2008-05-21 19:32 ` Leonardo Chiquitto
2008-05-21 20:03 ` Oliver Neukum
2008-05-21 14:29 ` David Vrabel
2008-05-21 14:42 ` Alan Stern
2008-05-21 14:53 ` David Vrabel
2008-05-21 14:58 ` Alan Stern
2008-05-21 14:31 ` Oliver Neukum
2008-05-21 13:40 ` Oliver Neukum
2008-05-21 22:26 ` Peter Zijlstra
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=200805211533.00221.oliver@neukum.org \
--to=oliver@neukum.org \
--cc=greg@kroah.com \
--cc=jkosina@suse.cz \
--cc=lchiquitto@novell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=stern@rowland.harvard.edu \
/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