]> git.sur5r.net Git - openldap/commitdiff
Eliminate getkey search
authorHoward Chu <hyc@openldap.org>
Wed, 9 Apr 2003 17:34:58 +0000 (17:34 +0000)
committerHoward Chu <hyc@openldap.org>
Wed, 9 Apr 2003 17:34:58 +0000 (17:34 +0000)
servers/slapd/connection.c
servers/slapd/sl_malloc.c

index 7975348b22032582f62618da30608d5e19cdfecf..432a4b43cac0a73f9afdc1070e0ce1ff7f139784 100644 (file)
@@ -888,6 +888,7 @@ connection_operation( void *ctx, void *arg_v )
        ber_tag_t oldtag = tag;
 #endif /* SLAPD_MONITOR */
        Connection *conn = op->o_conn;
+       void *memctx;
 
        ldap_pvt_thread_mutex_lock( &num_ops_mutex );
        num_ops_initiated++;
@@ -915,9 +916,9 @@ connection_operation( void *ctx, void *arg_v )
         */
 #define        SLAB_SIZE       1048576
        if ( tag == LDAP_REQ_SEARCH ) {
-               sl_mem_create( SLAB_SIZE, ctx );
-               ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, ctx );
-               op->o_tmpmemctx = ctx;
+               memctx = sl_mem_create( SLAB_SIZE, ctx );
+               ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, memctx );
+               op->o_tmpmemctx = memctx;
                op->o_tmpalloc = sl_malloc;
                op->o_tmpfree = sl_free;
        } else {
index fff4270418d38006e628afd36ffe206757636cbb..3a5d15c399cb9fda0db2d15e0a92deabe78eb1a3 100644 (file)
@@ -44,7 +44,7 @@ sl_mem_init()
        ber_set_option( NULL, LBER_OPT_MEMORY_FNS, &sl_bmf );
 }
 
-void
+void *
 sl_mem_create(
        ber_len_t size,
        void *ctx
@@ -68,6 +68,7 @@ sl_mem_create(
        }
        sh->h_last = sh->h_base;
        sh->h_end = sh->h_base + size;
+       return sh;
 }
 
 void *
@@ -76,15 +77,13 @@ sl_malloc(
     void *ctx
 )
 {
-       struct slab_heap *sh = NULL;
+       struct slab_heap *sh = ctx;
        int pad = 2*sizeof(int)-1;
        ber_len_t *new;
 
        /* ber_set_option calls us like this */
        if (!ctx) return ber_memalloc_x( size, NULL );
 
-       ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL );
-
        /* round up to doubleword boundary */
        size += pad + sizeof( ber_len_t );
        size &= ~pad;
@@ -122,13 +121,11 @@ sl_calloc( ber_len_t n, ber_len_t size, void *ctx )
 void *
 sl_realloc( void *ptr, ber_len_t size, void *ctx )
 {
-       struct slab_heap *sh = NULL;
+       struct slab_heap *sh = ctx;
        int pad = 2*sizeof(int)-1;
        ber_len_t *p = (ber_len_t *)ptr;
        ber_len_t *new;
 
-       ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL );
-
        if ( ptr == NULL ) return sl_malloc( size, ctx );
 
        if ( ptr < sh->h_base || ptr >= sh->h_end ) {
@@ -163,9 +160,7 @@ sl_realloc( void *ptr, ber_len_t size, void *ctx )
 void
 sl_free( void *ptr, void *ctx )
 {
-       struct slab_heap *sh = NULL;
-
-       ldap_pvt_thread_pool_getkey( ctx, sl_mem_init, (void **)&sh, NULL );
+       struct slab_heap *sh = ctx;
 
        if ( ptr < sh->h_base || ptr >= sh->h_end ) {
 #ifdef NEW_LOGGING