X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-20-growhash.c;h=22a88c450438b06bf94e8f29d554ea5f1e71d595;hb=007a7e4e8df8f43c61126599bcc582750cbf17fe;hp=6bcfd7d3baee007dbb29633068ef0c6010160113;hpb=6804501c350181dea8f531142b28c620b70edbd9;p=ccan diff --git a/ccan/tdb2/test/run-20-growhash.c b/ccan/tdb2/test/run-20-growhash.c index 6bcfd7d3..22a88c45 100644 --- a/ccan/tdb2/test/run-20-growhash.c +++ b/ccan/tdb2/test/run-20-growhash.c @@ -1,15 +1,17 @@ #include +#include #include #include #include #include +#include #include #include #include "logging.h" static uint64_t myhash(const void *key, size_t len, uint64_t seed, void *priv) { - return *(uint64_t *)key; + return *(const uint64_t *)key; } static void add_bits(uint64_t *val, unsigned new, unsigned new_bits, @@ -47,7 +49,7 @@ int main(int argc, char *argv[]) struct tdb_data key = { (unsigned char *)&kdata, sizeof(kdata) }; struct tdb_data dbuf = { (unsigned char *)&kdata, sizeof(kdata) }; union tdb_attribute hattr = { .hash = { .base = { TDB_ATTRIBUTE_HASH }, - .hash_fn = myhash } }; + .fn = myhash } }; int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP, TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT, TDB_NOMMAP|TDB_CONVERT, @@ -76,7 +78,7 @@ int main(int argc, char *argv[]) /* Check first still exists. */ kdata = make_key(0, 0, 0, 0, 0, 0); - ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0); + ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL) != 0); /* Should have created correct hash. */ ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize)); /* Should have located space in group 0, bucket 0. */ @@ -98,7 +100,7 @@ int main(int argc, char *argv[]) ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0); ok1(tdb_check(tdb, NULL, NULL) == 0); - ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0); + ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL)); /* Should have created correct hash. */ ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize)); /* Should have moved to subhash */ @@ -122,7 +124,7 @@ int main(int argc, char *argv[]) ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0); ok1(tdb_check(tdb, NULL, NULL) == 0); - ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0); + ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL)); /* Should have created correct hash. */ ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize)); /* Should have moved to subhash */