projects
/
openwrt
/
staging
/
blogic.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 96fdf6011c539639bc9368faec6dbaf3ddfa7467..25e6051e97f29be25fa9e63a542c37483ef2e5d0 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;