X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=lib%2Fbloom.c;h=ee4ba0baabcc80c40d13ede42ccb204d4530c9d9;hp=33d093a33f6984cf7adc05b4e9092bb4d339300d;hb=26884f210ab7e7af688e86c4f16ae1f2f244b4a5;hpb=99b9c5347ca416300f66df165779e06b618bdf8e diff --git a/lib/bloom.c b/lib/bloom.c index 33d093a3..ee4ba0ba 100644 --- a/lib/bloom.c +++ b/lib/bloom.c @@ -113,11 +113,6 @@ 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) -{ - return __bloom_check(b, data, nwords, 0); -} - int bloom_set(struct bloom *b, uint32_t *data, unsigned int nwords) { return __bloom_check(b, data, nwords, 1);