UPSTREAM: xhci: dbc: Improve performance by removing delay in transfer event polling.

Queue event polling work with 0 delay in case there are pending transfers
queued up. This is part 2 of a 3 part series that roughly triples dbc
performace when using adb push and pull over dbc.

Max/min push rate after patches is 210/118 MB/s, pull rate 171/133 MB/s,
tested with large files (300MB-9GB) by Łukasz Bartosik

First performance improvement patch was commit 31128e7492
("xhci: dbc: add dbgtty request to end of list once it completes")

Cc: Łukasz Bartosik <ukaszb@chromium.org>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Link: https://lore.kernel.org/r/20241227120142.1035206-2-mathias.nyman@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 03e3d9c2bd85cda941b3cf78e895c1498ac05c5f)

BUG=b:350022600
TEST=Verified adb push/pull performance is >100 MB/s
Change-Id: I9e78c3556ff4dbb4c3e43d5b0a16eedeaf36e299
Signed-off-by: Łukasz Bartosik <ukaszb@google.com>
This commit is contained in:
Mathias Nyman
2024-12-27 14:01:38 +02:00
committed by Treehugger Robot
parent c22f6470d7
commit 09d84618d5
+1 -1
View File
@@ -954,7 +954,7 @@ static void xhci_dbc_handle_events(struct work_struct *work)
/* set fast poll rate if there are pending data transfers */
if (!list_empty(&dbc->eps[BULK_OUT].list_pending) ||
!list_empty(&dbc->eps[BULK_IN].list_pending))
poll_interval = 1;
poll_interval = 0;
break;
default:
dev_info(dbc->dev, "stop handling dbc events\n");