summaryrefslogtreecommitdiffstats
path: root/sys/rpc/svc.c
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2014-06-22 18:02:39 +0000
committermav <mav@FreeBSD.org>2014-06-22 18:02:39 +0000
commit1d8eae9d0a71314b260971ff1d920c6685a0b2a4 (patch)
treeadf36ab6efe8480f59fd5b516d141f6939d30ee3 /sys/rpc/svc.c
parentad4e5fe06bf26964cbf5e3e5a1d6a6d85c9067c2 (diff)
downloadFreeBSD-src-1d8eae9d0a71314b260971ff1d920c6685a0b2a4.zip
FreeBSD-src-1d8eae9d0a71314b260971ff1d920c6685a0b2a4.tar.gz
MFC r267223:
Remove st_idle variable, duplicating st_xprt.
Diffstat (limited to 'sys/rpc/svc.c')
-rw-r--r--sys/rpc/svc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/rpc/svc.c b/sys/rpc/svc.c
index 9803e02..5062a84 100644
--- a/sys/rpc/svc.c
+++ b/sys/rpc/svc.c
@@ -340,7 +340,6 @@ xprt_assignthread(SVCXPRT *xprt)
st = LIST_FIRST(&pool->sp_idlethreads);
if (st) {
LIST_REMOVE(st, st_ilink);
- st->st_idle = FALSE;
SVC_ACQUIRE(xprt);
xprt->xp_thread = st;
st->st_xprt = xprt;
@@ -1138,7 +1137,6 @@ svc_run_internal(SVCPOOL *pool, bool_t ismaster)
}
LIST_INSERT_HEAD(&pool->sp_idlethreads, st, st_ilink);
- st->st_idle = TRUE;
if (ismaster || (!ismaster &&
pool->sp_threadcount > pool->sp_minthreads))
error = cv_timedwait_sig(&st->st_cond,
@@ -1146,10 +1144,8 @@ svc_run_internal(SVCPOOL *pool, bool_t ismaster)
else
error = cv_wait_sig(&st->st_cond,
&pool->sp_lock);
- if (st->st_idle) {
+ if (st->st_xprt == NULL)
LIST_REMOVE(st, st_ilink);
- st->st_idle = FALSE;
- }
/*
* Reduce worker thread count when idle.
OpenPOWER on IntegriCloud