projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2275cde
)
Make the xprtiod workqueue unbounded.
author
Trond Myklebust
<trond.myklebust@primarydata.com>
Tue, 6 Feb 2018 12:58:49 +0000
(07:58 -0500)
committer
Trond Myklebust
<trond.myklebust@primarydata.com>
Wed, 7 Feb 2018 23:31:54 +0000
(18:31 -0500)
This should help reduce the latency on replies.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
net/sunrpc/sched.c
patch
|
blob
|
history
diff --git
a/net/sunrpc/sched.c
b/net/sunrpc/sched.c
index
96fdf60
..
25e6051
100644
(file)
--- a/
net/sunrpc/sched.c
+++ b/
net/sunrpc/sched.c
@@
-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;