]> git.sur5r.net Git - openldap/commitdiff
(re)introduce o_connid such that STATS doesn't need c_mutex (which it
authorKurt Zeilenga <kurt@openldap.org>
Fri, 16 Jul 1999 22:24:32 +0000 (22:24 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 16 Jul 1999 22:24:32 +0000 (22:24 +0000)
didn't bother to acquire)...

servers/slapd/add.c
servers/slapd/bind.c
servers/slapd/compare.c
servers/slapd/connection.c
servers/slapd/modify.c
servers/slapd/modrdn.c
servers/slapd/result.c
servers/slapd/search.c
servers/slapd/slap.h
servers/slapd/unbind.c

index cfff625602d4a1bae1e6c9ced059ffcb7eb45807..683a7649c318dae81dcbf66f2831dc36a71bfc0c 100644 (file)
@@ -117,7 +117,7 @@ do_add( Connection *conn, Operation *op )
        } 
 
        Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d ADD dn=\"%s\"\n",
-           conn->c_connid, op->o_opid, e->e_ndn, 0, 0 );
+           op->o_connid, op->o_opid, e->e_ndn, 0, 0 );
 
        /*
         * We could be serving multiple database backends.  Select the
index c8daed7bfe2bab60394ff27c11edfd81d114a4d0..c09d4098e7218bfb47bef0561cf9abe38d9a4440 100644 (file)
@@ -154,7 +154,7 @@ do_bind(
        ndn = dn_normalize_case( ch_strdup( cdn ) );
 
        Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d BIND dn=\"%s\" method=%d\n",
-           conn->c_connid, op->o_opid, ndn, method, 0 );
+           op->o_connid, op->o_opid, ndn, method, 0 );
 
        if ( version < LDAP_VERSION_MIN || version > LDAP_VERSION_MAX ) {
                Debug( LDAP_DEBUG_ANY, "unknown version %d\n", version, 0, 0 );
index 29a7c8096231a3af61bd4ae902584c6591309169..c617be202827752a6b5c38c4275bd4731d2e86e0 100644 (file)
@@ -74,7 +74,7 @@ do_compare(
        ndn = dn_normalize_case( ndn );
 
        Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d CMP dn=\"%s\" attr=\"%s\"\n",
-           conn->c_connid, op->o_opid, ndn, ava.ava_type, 0 );
+           op->o_connid, op->o_opid, ndn, ava.ava_type, 0 );
 
        /*
         * We could be serving multiple database backends.  Select the
index 0ff5d2a8cd67a09474f727c4a5d5198381612c72..b05c8fbf0a8b2c7077d50e2275c24f11d6a7e8f9 100644 (file)
@@ -421,6 +421,7 @@ connection_destroy( Connection *c )
     backend_connection_destroy(c);
 
     c->c_protocol = 0;
+    c->c_connid = -1;
 
     c->c_activitytime = c->c_starttime = 0;
 
@@ -990,6 +991,7 @@ static int connection_op_activate( Connection *conn, Operation *op )
        arg->co_op->o_ndn = dn_normalize_case( ch_strdup( arg->co_op->o_dn ) );
 
        arg->co_op->o_protocol = conn->c_protocol;
+       arg->co_op->o_connid = conn->c_connid;
 
        arg->co_op->o_authtype = conn->c_authtype;
        arg->co_op->o_authmech = conn->c_authmech != NULL
index 340263037e9b70fa23d79c7d67b2fe5d4ba58c56..016033742c4f869b2816773a770176d9460da009 100644 (file)
@@ -151,7 +151,7 @@ do_modify(
        } 
 
        Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d MOD dn=\"%s\"\n",
-           conn->c_connid, op->o_opid, ndn, 0, 0 );
+           op->o_connid, op->o_opid, ndn, 0, 0 );
 
        /*
         * We could be serving multiple database backends.  Select the
index 482a9bdd74447d17b21bfa24e274f89a0b293f93..59ce22cdeabddeb812a12eae7602bdea3264a63c 100644 (file)
@@ -170,7 +170,7 @@ do_modrdn(
        dn_normalize_case( ndn );
 
        Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d MODRDN dn=\"%s\"\n",
-           conn->c_connid, op->o_opid, ndn, 0, 0 );
+           op->o_connid, op->o_opid, ndn, 0, 0 );
 
        /*
         * We could be serving multiple database backends.  Select the
index 246a00776413aa7e1403ab024b71ff630e1ab054..0fcad46726d89d55dafebd8985d71cc1cf40ab36 100644 (file)
@@ -342,7 +342,7 @@ send_ldap_disconnect(
 
        Statslog( LDAP_DEBUG_STATS,
            "conn=%ld op=%ld DISCONNECT err=%ld tag=%lu text=%s\n",
-               (long) conn->c_connid, (long) op->o_opid,
+               (long) op->o_connid, (long) op->o_opid,
                (long) tag, (long) err, text );
 }
 
@@ -363,7 +363,9 @@ send_ldap_result(
 
        assert( !LDAP_API_ERROR( err ) );
 
-       Debug( LDAP_DEBUG_TRACE, "send_ldap_result %d:%s:%s\n",
+       Debug( LDAP_DEBUG_TRACE, "send_ldap_result: conn=%ld op=%ld p=%d\n",
+               (long) op->o_connid, (long) op->o_opid, op->o_protocol );
+       Debug( LDAP_DEBUG_ARGS, "send_ldap_result: %d:%s:%s\n",
                err, matched ?  matched : "", text ? text : "" );
 
        assert( err != LDAP_PARTIAL_RESULTS );
@@ -402,7 +404,7 @@ send_ldap_result(
 
        Statslog( LDAP_DEBUG_STATS,
            "conn=%ld op=%ld RESULT err=%ld tag=%lu text=%s\n",
-               (long) conn->c_connid, (long) op->o_opid,
+               (long) op->o_connid, (long) op->o_opid,
                (long) err, (long) tag, text );
 
        if( tmp != NULL ) {
@@ -471,7 +473,7 @@ send_search_result(
 
        Statslog( LDAP_DEBUG_STATS,
            "conn=%ld op=%ld SEARCH RESULT err=%ld tag=%lu text=%s\n",
-               (long) conn->c_connid, (long) op->o_opid,
+               (long) op->o_connid, (long) op->o_opid,
                (long) err, (long) tag, text );
 
 }
index b9906a12c9111a69bc617ac4c4c24559c530977f..92a34841bf0914a9578c09fa80dd097a72a367a6 100644 (file)
@@ -153,7 +153,7 @@ do_search(
 
        Statslog( LDAP_DEBUG_STATS,
            "conn=%d op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
-           conn->c_connid, op->o_opid, base, scope, fstr );
+           op->o_connid, op->o_opid, base, scope, fstr );
 
        if ( scope == LDAP_SCOPE_BASE ) {
 #if defined( SLAPD_MONITOR_DN )
index 439ebd6853312bd9b3f0b84da8098b7209e44e71..75a61b0ae283ea43f5cce52683b493ead1fcb4b3 100644 (file)
@@ -549,7 +549,7 @@ typedef struct slap_op {
 
        LDAPControl     **o_ctrls;       /* controls */
 
-/*      long   o_connid;       *//* id of conn initiating this op  */
+       unsigned long   o_connid; /* id of conn initiating this op  */
 
 #ifdef LDAP_CONNECTIONLESS
        int             o_cldap;        /* != 0 if this came in via CLDAP */
index 72342b7b706d289f72301ed37fe3624ed181cff7..da6e1cd7c7dee198905a0fedfe04b2a14a5efd25 100644 (file)
@@ -36,7 +36,7 @@ do_unbind(
         *      UnBindRequest ::= NULL
         */
 
-       Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d UNBIND\n", conn->c_connid,
+       Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d UNBIND\n", op->o_connid,
            op->o_opid, 0, 0, 0 );
 
        /* pass the unbind to all backends */