tdb_compat: handle TDB_INCOMPATIBLE_HASH flag.
authorRusty Russell <rusty@rustcorp.com.au>
Wed, 21 Sep 2011 03:25:59 +0000 (12:55 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 21 Sep 2011 03:25:59 +0000 (12:55 +0930)
This is only meaningful when using the TDB_VERSION1 flag: it is done
by using a magic hash value (which will fall back to the default hash
if that works instead).

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
lib/tdb_compat/tdb_compat.c
lib/tdb_compat/tdb_compat.h

index fd3a68717ad37120a76166a998f724ce6b77e8d2..9ed6604c4dcb30149f49384db1da007ead1fcc24 100644 (file)
@@ -94,7 +94,7 @@ tdb_open_compat_(const char *name, int hash_size_unused,
                                void *data),
                 void *log_data)
 {
-       union tdb_attribute cif, log, *attr = NULL;
+       union tdb_attribute cif, log, hash, *attr = NULL;
 
        if (log_fn) {
                log.log.base.attr = TDB_ATTRIBUTE_LOG;
@@ -112,6 +112,16 @@ tdb_open_compat_(const char *name, int hash_size_unused,
                tdb_flags &= ~TDB_CLEAR_IF_FIRST;
        }
 
+       if (tdb_flags & TDB_INCOMPATIBLE_HASH) {
+               if (tdb_flags & TDB_VERSION1) {
+                       hash.hash.base.attr = TDB_ATTRIBUTE_HASH;
+                       hash.hash.base.next = attr;
+                       hash.hash.fn = tdb1_incompatible_hash;
+                       attr = &hash;
+               }
+               tdb_flags &= ~TDB_INCOMPATIBLE_HASH;
+       }
+
        /* Testsuite uses this to speed things up. */
        if (getenv("TDB_NO_FSYNC")) {
                tdb_flags |= TDB_NOSYNC;
index 1f7e8a9c63672491d8f6ca868cbe7f22ace5fada..4a01c15fdbd3c7213cfa7b6c9d4b9d48db38da41 100644 (file)
@@ -82,7 +82,7 @@ int tdb_reopen_all(int parent_longlived);
 
 /* These no longer exist in tdb2. */
 #define TDB_CLEAR_IF_FIRST 1048576
-#define TDB_INCOMPATIBLE_HASH 0
+#define TDB_INCOMPATIBLE_HASH 2097152
 #define TDB_VOLATILE 0
 
 /* tdb2 does nonblocking functions via attibutes. */