summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-11-20 12:09:24 +1100
committerAndrew Tridgell <tridge@samba.org>2009-11-20 12:23:55 +1100
commitdda28a9a787c31426f6d653dbdb5a0585b3dc25f (patch)
treea29b8936bff99f5e942d30c1a32c2e1e3fd6dcc1 /source4/dsdb/samdb/ldb_modules
parent47923ea5071ba6dca842edb8eb124030576fd4ca (diff)
downloadsamba-dda28a9a787c31426f6d653dbdb5a0585b3dc25f.tar.gz
samba-dda28a9a787c31426f6d653dbdb5a0585b3dc25f.tar.bz2
samba-dda28a9a787c31426f6d653dbdb5a0585b3dc25f.zip
s4-dsdb: make sure mod_usn list is zeroed on each transaction
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules')
-rw-r--r--source4/dsdb/samdb/ldb_modules/repl_meta_data.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
index 6c23964243..37aa399ef1 100644
--- a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
+++ b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
@@ -49,7 +49,6 @@
struct replmd_private {
TALLOC_CTX *la_ctx;
struct la_entry *la_list;
- uint32_t num_ncs;
struct nc_entry {
struct nc_entry *prev, *next;
struct ldb_dn *dn;
@@ -208,11 +207,10 @@ static int replmd_notify_store(struct ldb_module *module)
struct replmd_private *replmd_private =
talloc_get_type(ldb_module_get_private(module), struct replmd_private);
struct ldb_context *ldb = ldb_module_get_ctx(module);
- struct nc_entry *modified_partition;
- for (modified_partition = replmd_private->ncs; modified_partition;
- modified_partition = modified_partition->next) {
+ while (replmd_private->ncs) {
int ret;
+ struct nc_entry *modified_partition = replmd_private->ncs;
ret = dsdb_save_partition_usn(ldb, modified_partition->dn, modified_partition->mod_usn);
if (ret != LDB_SUCCESS) {
@@ -220,6 +218,8 @@ static int replmd_notify_store(struct ldb_module *module)
ldb_dn_get_linearized(modified_partition->dn)));
return ret;
}
+ DLIST_REMOVE(replmd_private->ncs, modified_partition);
+ talloc_free(modified_partition);
}
return LDB_SUCCESS;
@@ -2202,15 +2202,18 @@ static int replmd_extended(struct ldb_module *module, struct ldb_request *req)
static int replmd_start_transaction(struct ldb_module *module)
{
/* create our private structure for this transaction */
- int i;
struct replmd_private *replmd_private = talloc_get_type(ldb_module_get_private(module),
struct replmd_private);
talloc_free(replmd_private->la_ctx);
replmd_private->la_list = NULL;
replmd_private->la_ctx = NULL;
- for (i=0; i<replmd_private->num_ncs; i++) {
- replmd_private->ncs[i].mod_usn = 0;
+ /* free any leftover mod_usn records from cancelled
+ transactions */
+ while (replmd_private->ncs) {
+ struct nc_entry *e = replmd_private->ncs;
+ DLIST_REMOVE(replmd_private->ncs, e);
+ talloc_free(e);
}
return ldb_next_start_trans(module);