Commit 90ea9f1b authored by Trond Myklebust's avatar Trond Myklebust

Make the xprtiod workqueue unbounded.

This should help reduce the latency on replies.
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 2275cde4
......@@ -1109,7 +1109,7 @@ static int rpciod_start(void)
goto out_failed;
rpciod_workqueue = wq;
/* Note: highpri because network receive is latency sensitive */
wq = alloc_workqueue("xprtiod", WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
wq = alloc_workqueue("xprtiod", WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_HIGHPRI, 0);
if (!wq)
goto free_rpciod;
xprtiod_workqueue = wq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment