dbwrap_ctdb: Pass on mutex flags to tdb_open
authorVolker Lendecke <vl@samba.org>
Thu, 6 Nov 2014 10:59:34 +0000 (11:59 +0100)
committerStefan Metzmacher <metze@samba.org>
Sun, 16 Nov 2014 11:13:54 +0000 (12:13 +0100)
Without this, ctdb can create a tdb file with mutex activated, but the
local tdb_open will not open the tdb due to strict flags checks whether
mutexes are possible.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10922

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Sun Nov 16 12:13:54 CET 2014 on sn-devel-104

source3/lib/dbwrap/dbwrap_ctdb.c

index 2aee435aabfdcee10c49304a94b2456be036d75f..e6dcc0e987c35908e854e97c7a35500f5752a9aa 100644 (file)
@@ -1607,7 +1607,8 @@ struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
        result->lock_order = lock_order;
 
        /* only pass through specific flags */
-       tdb_flags &= TDB_SEQNUM|TDB_VOLATILE;
+       tdb_flags &= TDB_SEQNUM|TDB_VOLATILE|
+               TDB_MUTEX_LOCKING|TDB_CLEAR_IF_FIRST;
 
        /* honor permissions if user has specified O_CREAT */
        if (open_flags & O_CREAT) {