summaryrefslogtreecommitdiff
path: root/source3/include/serverid.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-03-25 16:02:54 +0100
committerVolker Lendecke <vl@samba.org>2010-03-25 16:40:44 +0100
commit5a88e43c693f9e0c5dd93e4fd238364262643b5a (patch)
treead3d17a1ea68bc7a6923e1441defdd316023b552 /source3/include/serverid.h
parented189459b9d7776700ffd353f81b283232940199 (diff)
downloadsamba-5a88e43c693f9e0c5dd93e4fd238364262643b5a.tar.gz
samba-5a88e43c693f9e0c5dd93e4fd238364262643b5a.tar.bz2
samba-5a88e43c693f9e0c5dd93e4fd238364262643b5a.zip
s3: Make sure our CLEAR_IF_FIRST optimization works for serverid.tdb
In the child, we fully re-open serverid.tdb, which leads to one fcntl lock for CLEAR_IF_FIRST detection per smbd. This opens the tdb in the parent and holds it, so that tdb_reopen_all correctly catches the CLEAR_IF_FIRST bit.
Diffstat (limited to 'source3/include/serverid.h')
-rw-r--r--source3/include/serverid.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/include/serverid.h b/source3/include/serverid.h
index 9ef778cdc0..e60fc47afe 100644
--- a/source3/include/serverid.h
+++ b/source3/include/serverid.h
@@ -63,4 +63,9 @@ bool serverid_traverse_read(int (*fn)(const struct server_id *id,
uint32_t msg_flags,
void *private_data),
void *private_data);
+/*
+ * Ensure CLEAR_IF_FIRST works fine, to be called from the parent smbd
+ */
+bool serverid_parent_init(void);
+
#endif