Check for both type of cancellation codes for sense and data urbs.

Signed-off-by: Hans de Goede <hdego...@redhat.com>
---
 drivers/usb/storage/uas.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/storage/uas.c b/drivers/usb/storage/uas.c
index 685eb37..46b8788 100644
--- a/drivers/usb/storage/uas.c
+++ b/drivers/usb/storage/uas.c
@@ -315,10 +315,7 @@ static void uas_stat_cmplt(struct urb *urb)
                goto out;
 
        if (urb->status) {
-               if (urb->status == -ENOENT) {
-                       dev_err(&urb->dev->dev, "stat urb: killed, stream %d\n",
-                               urb->stream_id);
-               } else {
+               if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
                        dev_err(&urb->dev->dev, "stat urb: status %d\n",
                                urb->status);
                }
@@ -425,7 +422,7 @@ static void uas_data_cmplt(struct urb *urb)
        }
 
        if (urb->status) {
-               if (urb->status != -ECONNRESET) {
+               if (urb->status != -ENOENT && urb->status != -ECONNRESET) {
                        uas_log_cmd_state(cmnd, __func__);
                        scmd_printk(KERN_ERR, cmnd,
                                "data cmplt err %d stream %d\n",
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to