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 isoc frame debug message spam

The removed debug messages trigger each time an isoc frame is handled.
In case of an error, a dedicated debug message exists.

For example, a 60fps USB camera will trigger the debug message every 0.6s.

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-5-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Niklas Neronin and committed by
Greg Kroah-Hartman
a1de0682 f5985a81

-4
-4
drivers/usb/host/xhci-ring.c
··· 3941 3941 start_frame_id = (start_frame_id >> 3) & 0x7ff; 3942 3942 end_frame_id = (end_frame_id >> 3) & 0x7ff; 3943 3943 3944 - xhci_dbg(xhci, "%s: index %d, reg 0x%x start_frame_id 0x%x, end_frame_id 0x%x, start_frame 0x%x\n", 3945 - __func__, index, readl(&xhci->run_regs->microframe_index), 3946 - start_frame_id, end_frame_id, start_frame); 3947 - 3948 3944 if (start_frame_id < end_frame_id) { 3949 3945 if (start_frame > end_frame_id || 3950 3946 start_frame < start_frame_id)