ITS#8725 connection fixes

Fix op_finish, must resched connection to pick up pending ops.
Fix op completion counter.
This commit is contained in:
Howard Chu 2017-01-19 20:10:38 +00:00
parent 63308ef6bb
commit 8b1fb962fc

View File

@ -1045,6 +1045,10 @@ connection_op_finish( Operation *op )
{
Connection *conn = op->o_conn;
void *memctx_null = NULL;
slap_op_t opidx = slap_req2op( op->o_tag );
assert( opidx != SLAP_OP_LAST );
INCR_OP_COMPLETED( opidx );
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
@ -1057,6 +1061,7 @@ connection_op_finish( Operation *op )
LDAP_STAILQ_NEXT(op, o_next) = NULL;
conn->c_n_ops_executing--;
conn->c_n_ops_completed++;
connection_resched( conn );
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
}