From 75bb5633bbcaf267d6a4eb873f55ae4e6bd25637 Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Tue, 17 Mar 2009 17:26:42 +0000 Subject: [PATCH] ITS#5999 --- CHANGES | 1 + servers/slapd/overlays/syncprov.c | 12 ++++++------ tests/scripts/defines.sh | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 31d720de38..cbf39b1df5 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,7 @@ OpenLDAP 2.4.16 Engineering Fixed slapo-syncprov newCookie sync messages (ITS#5972) Fixed slapd-syncprov too many MMR messages (ITS#6020) Fixed slapo-syncprov replica lockout (ITS#5985) + Fixed slapo-syncprov modtarget tracking (ITS#5999) Build Environment Cleaned up alloc/free functions for Windows (ITS#6005) Documentation diff --git a/servers/slapd/overlays/syncprov.c b/servers/slapd/overlays/syncprov.c index 969e302417..6799e03c79 100644 --- a/servers/slapd/overlays/syncprov.c +++ b/servers/slapd/overlays/syncprov.c @@ -142,6 +142,7 @@ typedef struct syncprov_info_t { typedef struct opcookie { slap_overinst *son; syncmatches *smatches; + modtarget *smt; struct berval sdn; /* DN of entry, for deletes */ struct berval sndn; struct berval suuid; /* UUID of entry */ @@ -1313,26 +1314,24 @@ syncprov_op_cleanup( Operation *op, SlapReply *rs ) } /* Remove op from lock table */ - mtdummy.mt_op = op; - ldap_pvt_thread_mutex_lock( &si->si_mods_mutex ); - mt = avl_find( si->si_mods, &mtdummy, sp_avl_cmp ); + mt = opc->smt; if ( mt ) { modinst *mi = mt->mt_mods; /* If there are more, promote the next one */ - ldap_pvt_thread_mutex_lock( &mt->mt_mutex ); if ( mi->mi_next ) { + ldap_pvt_thread_mutex_lock( &mt->mt_mutex ); mt->mt_mods = mi->mi_next; mt->mt_op = mt->mt_mods->mi_op; ldap_pvt_thread_mutex_unlock( &mt->mt_mutex ); } else { + ldap_pvt_thread_mutex_lock( &si->si_mods_mutex ); avl_delete( &si->si_mods, mt, sp_avl_cmp ); - ldap_pvt_thread_mutex_unlock( &mt->mt_mutex ); + ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex ); ldap_pvt_thread_mutex_destroy( &mt->mt_mutex ); ch_free( mt ); } } - ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex ); if ( !BER_BVISNULL( &opc->suuid )) op->o_tmpfree( opc->suuid.bv_val, op->o_tmpmemctx ); if ( !BER_BVISNULL( &opc->sndn )) @@ -1974,6 +1973,7 @@ syncprov_op_mod( Operation *op, SlapReply *rs ) avl_insert( &si->si_mods, mt, sp_avl_cmp, avl_dup_error ); ldap_pvt_thread_mutex_unlock( &si->si_mods_mutex ); } + opc->smt = mt; } if (( have_psearches || si->si_logs ) && op->o_tag != LDAP_REQ_ADD ) diff --git a/tests/scripts/defines.sh b/tests/scripts/defines.sh index a42a52cdde..4ffdb74434 100755 --- a/tests/scripts/defines.sh +++ b/tests/scripts/defines.sh @@ -46,8 +46,8 @@ WITH_SASL=${AC_WITH_SASL-no} USE_SASL=${SLAPD_USE_SASL-no} ACI=${AC_ACI_ENABLED-acino} THREADS=${AC_THREADS-threadsno} -SLEEP1=${SLEEP1-7} -SLEEP2=${SLEEP2-15} +SLEEP1=${SLEEP1-20} +SLEEP2=${SLEEP2-30} # dirs PROGDIR=./progs -- 2.39.5