X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=lib%2Fbloom.c;h=9ccec5fa14a0c2cf2d6794efc754a9e894cab06b;hp=8059a65b29a5915c6eeee11ef3096566e19a6107;hb=eb50727a93ce10568973d6fc6b267b966e65b698;hpb=f83ffd0288ddb6de8e5d1631ae619fd385e6d400 diff --git a/lib/bloom.c b/lib/bloom.c index 8059a65b..9ccec5fa 100644 --- a/lib/bloom.c +++ b/lib/bloom.c @@ -6,6 +6,8 @@ #include "../minmax.h" #include "../crc/xxhash.h" #include "../crc/murmur3.h" +#include "../crc/crc32c.h" +#include "../crc/fnv.h" struct bloom { uint64_t nentries; @@ -21,22 +23,42 @@ struct bloom_hash { uint32_t (*fn)(const void *, uint32_t, uint32_t); }; -struct bloom_hash hashes[] = { +static uint32_t bloom_crc32c(const void *buf, uint32_t len, uint32_t seed) +{ + return fio_crc32c(buf, len); +} + +static uint32_t bloom_fnv(const void *buf, uint32_t len, uint32_t seed) +{ + return fnv(buf, len, seed); +} + +#define BLOOM_SEED 0x8989 + +static struct bloom_hash hashes[] = { { - .seed = 0x8989, + .seed = BLOOM_SEED, .fn = jhash, }, { - .seed = 0x8989, + .seed = BLOOM_SEED, .fn = XXH32, }, { - .seed = 0x8989, + .seed = BLOOM_SEED, .fn = murmurhash3, }, + { + .seed = BLOOM_SEED, + .fn = bloom_crc32c, + }, + { + .seed = BLOOM_SEED, + .fn = bloom_fnv, + }, }; -#define N_HASHES 3 +#define N_HASHES 5 #define MIN_ENTRIES 1073741824UL @@ -45,6 +67,8 @@ struct bloom *bloom_new(uint64_t entries) struct bloom *b; size_t no_uints; + crc32c_intel_probe(); + b = malloc(sizeof(*b)); b->nentries = entries; no_uints = (entries + BITS_PER_INDEX - 1) / BITS_PER_INDEX; @@ -64,14 +88,14 @@ void bloom_free(struct bloom *b) free(b); } -static int __bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords, - int set) +static bool __bloom_check(struct bloom *b, const void *data, unsigned int len, + bool set) { uint32_t hash[N_HASHES]; int i, was_set; for (i = 0; i < N_HASHES; i++) { - hash[i] = hashes[i].fn(data, nwords, hashes[i].seed); + hash[i] = hashes[i].fn(data, len, hashes[i].seed); hash[i] = hash[i] % b->nentries; } @@ -89,12 +113,13 @@ static int __bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords, return was_set == N_HASHES; } -int bloom_check(struct bloom *b, uint32_t *data, unsigned int nwords) +bool bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords) { - return __bloom_check(b, data, nwords, 0); + return __bloom_check(b, data, nwords * sizeof(uint32_t), true); } -int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords) +bool bloom_string(struct bloom *b, const char *data, unsigned int len, + bool set) { - return __bloom_check(b, data, nwords, 1); + return __bloom_check(b, data, len, set); }