The patch titled
     USB: try to debug Bug 8561
has been removed from the -mm tree.  Its filename was
     usb-try-to-debug-bug-8561.patch

This patch was dropped because it is obsolete

------------------------------------------------------
Subject: USB: try to debug Bug 8561
From: Alan Stern <[EMAIL PROTECTED]>

Maybe the serial device driver is submitting an URB that is already in
use.  This patch might catch the error.

Cc: <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/usb/core/urb.c |    6 ++++++
 1 files changed, 6 insertions(+)

diff -puN drivers/usb/core/urb.c~usb-try-to-debug-bug-8561 
drivers/usb/core/urb.c
--- a/drivers/usb/core/urb.c~usb-try-to-debug-bug-8561
+++ a/drivers/usb/core/urb.c
@@ -288,6 +288,12 @@ int usb_submit_urb(struct urb *urb, gfp_
                        || dev->state == USB_STATE_SUSPENDED)
                return -EHOSTUNREACH;
 
+       /* Not a precise test, but useful for debugging */
+       if (urb->status == -EINPROGRESS) {
+               WARN_ON(1);
+               return -EBUSY;
+       }
+
        urb->status = -EINPROGRESS;
        urb->actual_length = 0;
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

git-hid.patch
usb-try-to-debug-bug-8561.patch
usb-serial-fix-something.patch
make-alt-sysrq-p-display-the-debug-register-contents.patch
freezer-run-show_state-when-freezing-times-out.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to