summaryrefslogtreecommitdiff
path: root/source3/smbd/server.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-03-25 16:01:54 +0100
committerVolker Lendecke <vl@samba.org>2010-03-25 16:40:44 +0100
commited189459b9d7776700ffd353f81b283232940199 (patch)
tree3e46a1b3c44dd8d66ace3a586918a3aebd3414fd /source3/smbd/server.c
parent4cdbe07b2563b56c2d8b9a5733eedf25245ba86b (diff)
downloadsamba-ed189459b9d7776700ffd353f81b283232940199.tar.gz
samba-ed189459b9d7776700ffd353f81b283232940199.tar.bz2
samba-ed189459b9d7776700ffd353f81b283232940199.zip
s3: Make sure our CLEAR_IF_FIRST optimization works for the notify tdbs
The notify tdb files are opened at tconX time, which leads to one fcntl lock for CLEAR_IF_FIRST detection per smbd. This opens the tdbs in the parent and holds it, so that tdb_reopen_all correctly catches the CLEAR_IF_FIRST bit.
Diffstat (limited to 'source3/smbd/server.c')
-rw-r--r--source3/smbd/server.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 0a6d66c180..145dd5f5d5 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -1300,6 +1300,10 @@ extern void build_options(bool screen);
exit(1);
}
+ if (!notify_internal_parent_init()) {
+ exit(1);
+ }
+
namecache_enable();
if (!W_ERROR_IS_OK(registry_init_full()))