diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2015-11-20 13:53:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-01 10:44:19 -0800 |
commit | fc0855f2747a0e21d86b7e63c50bf234fa766184 (patch) | |
tree | 8f33df353e64b36f511faa3fecea62167554c94b /drivers/usb/host/ehci.h | |
parent | 8ee10d6292cab0e425f93dbfa1f0e805c449dfc2 (diff) | |
download | linux-stable-fc0855f2747a0e21d86b7e63c50bf234fa766184.tar.gz linux-stable-fc0855f2747a0e21d86b7e63c50bf234fa766184.tar.bz2 linux-stable-fc0855f2747a0e21d86b7e63c50bf234fa766184.zip |
USB: EHCI: warn on unexpectedly active QH
This patch adds a new warning message to ehci-hcd. The warning is
triggered whenever the driver finds that the hardware has set the
Active bit in a QH at a time when the driver expects the QH to be
completely idle. Such bugs have been observed by users in the past,
and since they can lead to serious problems (such as inability to
unlink an URB that never completes), it would be good to know about
them when they occur.
This won't fix these bugs; that's a bigger job for a later patch. But
success isn't guaranteed, since this depends on aspects of the
hardware which are not documented in the EHCI spec or for which the
spec's recommendations are clearly unworkable. It therefore seems
worthwhile to check for these bugs proactively.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Reported-by: Michael Reutman <mreutman@epiqsolutions.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci.h')
-rw-r--r-- | drivers/usb/host/ehci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h index 46f62e41bcde..ec61aedb0067 100644 --- a/drivers/usb/host/ehci.h +++ b/drivers/usb/host/ehci.h @@ -439,6 +439,7 @@ struct ehci_qh { unsigned dequeue_during_giveback:1; unsigned exception:1; /* got a fault, or an unlink was requested */ + unsigned should_be_inactive:1; }; /*-------------------------------------------------------------------------*/ |