This is a note to let you know that I've just added the patch titled

    uas: Log a warning when we cannot use uas because the hcd lacks streams

to the 3.16-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     
uas-log-a-warning-when-we-cannot-use-uas-because-the-hcd-lacks-streams.patch
and it can be found in the queue-3.16 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 43508be512661c905d0320ee73e0b65ef36d2459 Mon Sep 17 00:00:00 2001
From: Hans de Goede <[email protected]>
Date: Fri, 25 Jul 2014 22:01:27 +0200
Subject: uas: Log a warning when we cannot use uas because the hcd lacks streams

From: Hans de Goede <[email protected]>

commit 43508be512661c905d0320ee73e0b65ef36d2459 upstream.

So that an user who wants to use uas can see why he is not getting uas.

Also move the check down so that we don't warn if there are other reasons
why uas cannot work.

Signed-off-by: Hans de Goede <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/usb/storage/uas-detect.h |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

--- a/drivers/usb/storage/uas-detect.h
+++ b/drivers/usb/storage/uas-detect.h
@@ -64,9 +64,6 @@ static int uas_use_uas_driver(struct usb
        if (flags & US_FL_IGNORE_UAS)
                return 0;
 
-       if (udev->speed >= USB_SPEED_SUPER && !hcd->can_do_streams)
-               return 0;
-
        alt = uas_find_uas_alt_setting(intf);
        if (alt < 0)
                return 0;
@@ -84,5 +81,14 @@ static int uas_use_uas_driver(struct usb
                return 0;
        }
 
+       if (udev->speed >= USB_SPEED_SUPER && !hcd->can_do_streams) {
+               dev_warn(&udev->dev,
+                       "USB controller %s does not support streams, which are 
required by the UAS driver.\n",
+                       hcd_to_bus(hcd)->bus_name);
+               dev_warn(&udev->dev,
+                       "Please try an other USB controller if you wish to use 
UAS.\n");
+               return 0;
+       }
+
        return 1;
 }


Patches currently in stable-queue which might be from [email protected] are

queue-3.16/uas-log-a-warning-when-we-cannot-use-uas-because-the-hcd-lacks-streams.patch
queue-3.16/uas-only-complain-about-missing-sg-if-all-other-checks-succeed.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to