diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/gencache.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source3/lib/gencache.c b/source3/lib/gencache.c index 9a4cbc2cd7..a78e60a153 100644 --- a/source3/lib/gencache.c +++ b/source3/lib/gencache.c @@ -416,8 +416,17 @@ bool gencache_stabilize(void) return false; } - res = tdb_transaction_start(cache); + res = tdb_transaction_start_nonblock(cache); if (res == -1) { + + if (tdb_error(cache) == TDB_ERR_NOLOCK) { + /* + * Someone else already does the stabilize, + * this does not have to be done twice + */ + return true; + } + DEBUG(10, ("Could not start transaction on gencache.tdb: " "%s\n", tdb_errorstr(cache))); return false; |