summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/partition.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-10-14 14:13:52 +1100
committerAndrew Bartlett <abartlet@samba.org>2009-10-21 22:43:53 +1100
commit6a77165c8ad3fdf37218e37352859926eca48922 (patch)
treedc2d1f174b508acbd03f42512f352a0ef68193aa /source4/dsdb/samdb/ldb_modules/partition.c
parente62200e253a393ce0a427ff315267efbd2eaeeea (diff)
downloadsamba-6a77165c8ad3fdf37218e37352859926eca48922.tar.gz
samba-6a77165c8ad3fdf37218e37352859926eca48922.tar.bz2
samba-6a77165c8ad3fdf37218e37352859926eca48922.zip
s4:dsdb Only reload partition metadata on search and transaction start
I see no reason to reload it when in a transaction - it can't change on us anyway (we possibly need to watch for our own changes to @PARTITION however) Andrew Bartlett
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/partition.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/partition.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/partition.c b/source4/dsdb/samdb/ldb_modules/partition.c
index 4626eefa7c..ea5dff7dce 100644
--- a/source4/dsdb/samdb/ldb_modules/partition.c
+++ b/source4/dsdb/samdb/ldb_modules/partition.c
@@ -413,11 +413,6 @@ static int partition_replicate(struct ldb_module *module, struct ldb_request *re
return ldb_next_request(module, req);
}
- ret = partition_reload_if_required(module, data);
- if (ret != LDB_SUCCESS) {
- return ret;
- }
-
if (req->operation != LDB_SEARCH) {
/* Is this a special DN, we need to replicate to every backend? */
for (i=0; data->replicate && data->replicate[i]; i++) {
@@ -638,11 +633,6 @@ static int partition_rename(struct ldb_module *module, struct ldb_request *req)
return LDB_ERR_OPERATIONS_ERROR;
}
- ret = partition_reload_if_required(module, data);
- if (ret != LDB_SUCCESS) {
- return ret;
- }
-
backend = find_partition(data, req->op.rename.olddn, req);
backend2 = find_partition(data, req->op.rename.newdn, req);
@@ -678,6 +668,11 @@ static int partition_start_trans(struct ldb_module *module)
return ret;
}
+ ret = partition_reload_if_required(module, data);
+ if (ret != LDB_SUCCESS) {
+ return ret;
+ }
+
for (i=0; data && data->partitions && data->partitions[i]; i++) {
struct ldb_module *next = data->partitions[i]->module;
PARTITION_FIND_OP(next, start_transaction);