Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

usbip: Reduce CONNRESET message noise in dmesg from stub

stub_complete() prints informational messages for each urb unlink
filling dmesg. Change the message to dev_dbg() similar to vhci
reports the CONNRESET condition.

Reported-by: Ignacio Hernandez-Ros <ignacio@hernandez-ros.com>
Closes: https://lore.kernel.org/all/0101019b92e81c20-09906fb4-d5e8-40a6-9192-ab693eef4179-000000@us-west-2.amazonses.com/
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Link: https://patch.msgid.link/20260121225157.34635-1-skhan@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Shuah Khan and committed by
Greg Kroah-Hartman
7fa47c13 65c4b312

+2 -2
+2 -2
drivers/usb/usbip/stub_tx.c
··· 55 55 "stopped by a call to usb_kill_urb() because of cleaning up a virtual connection\n"); 56 56 return; 57 57 case -ECONNRESET: 58 - dev_info(&urb->dev->dev, 59 - "unlinked by a call to usb_unlink_urb()\n"); 58 + dev_dbg(&urb->dev->dev, 59 + "unlinked by a call to usb_unlink_urb()\n"); 60 60 break; 61 61 case -EPIPE: 62 62 dev_info(&urb->dev->dev, "endpoint %d is stalled\n",