From 5a88e43c693f9e0c5dd93e4fd238364262643b5a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 25 Mar 2010 16:02:54 +0100 Subject: 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. --- source3/smbd/server.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/smbd') diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 145dd5f5d5..e5cfc27794 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1304,6 +1304,10 @@ extern void build_options(bool screen); exit(1); } + if (!serverid_parent_init()) { + exit(1); + } + namecache_enable(); if (!W_ERROR_IS_OK(registry_init_full())) -- cgit