mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
Make the xprtiod workqueue unbounded.
This should help reduce the latency on replies. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
2275cde4cc
commit
90ea9f1b60
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue