提交 8f34c288 编写于 作者: D david-b@pacbell.net 提交者: Greg Kroah-Hartman

[PATCH] USB: remove annoying message

Avoid an annoying message that can appear if devices are disconnected
in the middle of a USB scatterlist operation.

Message noted in http://bugzilla.kernel.org/show_bug.cgi?id=4373
(but the real issue there seems to be a SCSI level hang).
Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 f956e7cd
...@@ -265,7 +265,9 @@ static void sg_complete (struct urb *urb, struct pt_regs *regs) ...@@ -265,7 +265,9 @@ static void sg_complete (struct urb *urb, struct pt_regs *regs)
continue; continue;
if (found) { if (found) {
status = usb_unlink_urb (io->urbs [i]); status = usb_unlink_urb (io->urbs [i]);
if (status != -EINPROGRESS && status != -EBUSY) if (status != -EINPROGRESS
&& status != -ENODEV
&& status != -EBUSY)
dev_err (&io->dev->dev, dev_err (&io->dev->dev,
"%s, unlink --> %d\n", "%s, unlink --> %d\n",
__FUNCTION__, status); __FUNCTION__, status);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册