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.

usb: xhci: remove excessive Bulk short packet debug message

Completion codes 'COMP_SUCCESS' and 'COMP_SHORT_PACKET' are the most
frequently encountered completion codes. Typically, these codes do not
trigger a default debug message but rather a warning that indicates a
potential issue. This behavior is consistent across all transfer types
with the exception of Bulk transfers. To reduce unnecessary log clutter,
remove the Bulk 'COMP_SHORT_PACKET' debug message.

Signed-off-by: Niklas Neronin <niklas.neronin@linux.intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20240905143300.1959279-6-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Niklas Neronin and committed by
Greg Kroah-Hartman
b0af5ae7 a1de0682

-3
-3
drivers/usb/host/xhci-ring.c
··· 2521 2521 td->status = 0; 2522 2522 break; 2523 2523 case COMP_SHORT_PACKET: 2524 - xhci_dbg(xhci, "ep %#x - asked for %d bytes, %d bytes untransferred\n", 2525 - td->urb->ep->desc.bEndpointAddress, 2526 - requested, remaining); 2527 2524 td->status = 0; 2528 2525 break; 2529 2526 case COMP_STOPPED_SHORT_PACKET: