Skip to content

Commit 90ea9f1

Browse files
committed
Make the xprtiod workqueue unbounded.
This should help reduce the latency on replies. Signed-off-by: Trond Myklebust <[email protected]>
1 parent 2275cde commit 90ea9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/sunrpc/sched.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ static int rpciod_start(void)
11091109
goto out_failed;
11101110
rpciod_workqueue = wq;
11111111
/* Note: highpri because network receive is latency sensitive */
1112-
wq = alloc_workqueue("xprtiod", WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
1112+
wq = alloc_workqueue("xprtiod", WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_HIGHPRI, 0);
11131113
if (!wq)
11141114
goto free_rpciod;
11151115
xprtiod_workqueue = wq;

0 commit comments

Comments
 (0)