]> www.infradead.org Git - users/jedix/linux-maple.git/commit
xhci: dbc: Avoid event polling busyloop if pending rx transfers are inactive.
authorMathias Nyman <mathias.nyman@linux.intel.com>
Mon, 5 May 2025 12:56:30 +0000 (15:56 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 5 May 2025 14:30:45 +0000 (16:30 +0200)
commitcab63934c33b12c0d1e9f4da7450928057f2c142
tree10da2a15dc4258b4a9699df9715d3050f55c16b9
parent6328bdc988d23201c700e1e7e04eb05a1149ac1e
xhci: dbc: Avoid event polling busyloop if pending rx transfers are inactive.

Event polling delay is set to 0 if there are any pending requests in
either rx or tx requests lists. Checking for pending requests does
not work well for "IN" transfers as the tty driver always queues
requests to the list and TRBs to the ring, preparing to receive data
from the host.

This causes unnecessary busylooping and cpu hogging.

Only set the event polling delay to 0 if there are pending tx "write"
transfers, or if it was less than 10ms since last active data transfer
in any direction.

Cc: Ɓukasz Bartosik <ukaszb@chromium.org>
Fixes: fb18e5bb9660 ("xhci: dbc: poll at different rate depending on data transfer activity")
Cc: stable@vger.kernel.org
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20250505125630.561699-3-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci-dbgcap.c
drivers/usb/host/xhci-dbgcap.h