svn commit: r267741 - stable/10/sys/rpc
Alexander Motin
mav at FreeBSD.org
Sun Jun 22 18:02:40 UTC 2014
Author: mav
Date: Sun Jun 22 18:02:39 2014
New Revision: 267741
URL: http://svnweb.freebsd.org/changeset/base/267741
Log:
MFC r267223:
Remove st_idle variable, duplicating st_xprt.
Modified:
stable/10/sys/rpc/svc.c
stable/10/sys/rpc/svc.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/rpc/svc.c
==============================================================================
--- stable/10/sys/rpc/svc.c Sun Jun 22 18:01:40 2014 (r267740)
+++ stable/10/sys/rpc/svc.c Sun Jun 22 18:02:39 2014 (r267741)
@@ -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 i
}
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 i
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.
Modified: stable/10/sys/rpc/svc.h
==============================================================================
--- stable/10/sys/rpc/svc.h Sun Jun 22 18:01:40 2014 (r267740)
+++ stable/10/sys/rpc/svc.h Sun Jun 22 18:02:39 2014 (r267741)
@@ -295,7 +295,6 @@ typedef struct __rpc_svcthread {
struct __rpc_svcpool *st_pool;
SVCXPRT *st_xprt; /* transport we are processing */
struct svc_reqlist st_reqs; /* RPC requests to execute */
- int st_idle; /* thread is on idle list */
struct cv st_cond; /* sleeping for work */
LIST_ENTRY(__rpc_svcthread) st_link; /* all threads list */
LIST_ENTRY(__rpc_svcthread) st_ilink; /* idle threads list */
More information about the svn-src-stable-10
mailing list