]> git.ipfire.org Git - people/ms/linux.git/commitdiff
USB: EHCI: adjust error return code
authorAlan Stern <stern@rowland.harvard.edu>
Thu, 4 Dec 2014 15:22:57 +0000 (10:22 -0500)
committerJiri Slaby <jslaby@suse.cz>
Thu, 5 Mar 2015 14:37:15 +0000 (15:37 +0100)
commit c401e7b4a808d50ab53ef45cb8d0b99b238bf2c9 upstream.

The USB stack uses error code -ENOSPC to indicate that the periodic
schedule is too full, with insufficient bandwidth to accommodate a new
allocation.  It uses -EFBIG to indicate that an isochronous transfer
could not be linked into the schedule because it would exceed the
number of isochronous packets the host controller driver can handle
(generally because the new transfer would extend too far into the
future).

ehci-hcd uses the wrong error code at one point.  This patch fixes it,
along with a misleading comment and debugging message.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/usb/host/ehci-sched.c

index 8ecf164f03180c2e0be11106c9b69b6b0b7f516c..a70e4579623cb2e8999af5d4c76b971c5aeeb7ee 100644 (file)
@@ -1409,12 +1409,12 @@ iso_stream_schedule (
                next = (next - base) & (mod - 1);
                start = (stream->next_uframe - base) & (mod - 1);
 
-               /* Is the schedule already full? */
+               /* Is the schedule about to wrap around? */
                if (unlikely(start < period)) {
-                       ehci_dbg(ehci, "iso sched full %p (%u-%u < %u mod %u)\n",
+                       ehci_dbg(ehci, "request %p would overflow (%u-%u < %u mod %u)\n",
                                        urb, stream->next_uframe, base,
                                        period, mod);
-                       status = -ENOSPC;
+                       status = -EFBIG;
                        goto fail;
                }