public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] USB root hub polling and suspend
@ 2002-08-06 22:51 Paul Mackerras
  2002-08-07  4:43 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Mackerras @ 2002-08-06 22:51 UTC (permalink / raw)
  To: greg, linux-kernel

Currently with 2.5, when I suspend and resume my powerbook, I find
that the USB subsystem no longer sees root hub events, i.e. it doesn't
notice when I plug in a new USB device (it doesn't notice when I
unplug a device either but of course the driver for the device sees
that it is no longer responding).

It turns out that what happens is that the root hub timer goes off
after the OHCI driver has done its suspend stuff.  The timer routine
sees that the HCD is not running at the moment and doesn't schedule
another timeout.  Hence the series of timeouts stops.

The patch below fixes the problem for me.  Comments welcome.

Paul.

diff -urN linuxppc-2.5/drivers/usb/core/hcd.c pmac-2.5/drivers/usb/core/hcd.c
--- linuxppc-2.5/drivers/usb/core/hcd.c	Sun Jul 21 12:58:49 2002
+++ pmac-2.5/drivers/usb/core/hcd.c	Tue Jul 23 22:21:25 2002
@@ -454,7 +454,6 @@
 	/* rh_timer protected by hcd_data_lock */
 	if (timer_pending (&hcd->rh_timer)
 			|| urb->status != -EINPROGRESS
-			|| !HCD_IS_RUNNING (hcd->state)
 			|| urb->transfer_buffer_length < len) {
 		dbg ("not queuing status urb, stat %d", urb->status);
 		return -EINVAL;
@@ -508,8 +507,12 @@
 				BUG ();
 			}
 			spin_unlock_irqrestore (&hcd_data_lock, flags);
-		} else
+		} else {
 			spin_unlock_irqrestore (&urb->lock, flags);
+			spin_lock_irqsave (&hcd_data_lock, flags);
+			rh_status_urb (hcd, urb);
+			spin_unlock_irqrestore (&hcd_data_lock, flags);
+		}
 	} else {
 		/* this urb's been unlinked */
 		urb->hcpriv = 0;

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] USB root hub polling and suspend
  2002-08-06 22:51 [PATCH] USB root hub polling and suspend Paul Mackerras
@ 2002-08-07  4:43 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2002-08-07  4:43 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: linux-kernel

On Wed, Aug 07, 2002 at 08:51:14AM +1000, Paul Mackerras wrote:
> Currently with 2.5, when I suspend and resume my powerbook, I find
> that the USB subsystem no longer sees root hub events, i.e. it doesn't
> notice when I plug in a new USB device (it doesn't notice when I
> unplug a device either but of course the driver for the device sees
> that it is no longer responding).
> 
> It turns out that what happens is that the root hub timer goes off
> after the OHCI driver has done its suspend stuff.  The timer routine
> sees that the HCD is not running at the moment and doesn't schedule
> another timeout.  Hence the series of timeouts stops.
> 
> The patch below fixes the problem for me.  Comments welcome.

Thanks, I've added it to my tree and will send it on to Linus.

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-08-07  4:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-06 22:51 [PATCH] USB root hub polling and suspend Paul Mackerras
2002-08-07  4:43 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox