X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;ds=inline;f=create.c;h=51583a65fe4910ab4d5d812d48e26d25745f9cd4;hb=fa21c55adb75551452241369424a146c7acb71a4;hp=1b4ba880a1c3d220adc664b83bdae3ab1a46eef0;hpb=3e7ac6a3c698a28e9f0cd2b69b2a85f789524d96;p=adu.git diff --git a/create.c b/create.c index 1b4ba88..51583a6 100644 --- a/create.c +++ b/create.c @@ -31,7 +31,9 @@ static int consider_bloom(struct stat64 *s) return 1; } +/** Data size to hash for the global bloom filter. */ #define GLOBAL_BLOOM_BUF_SIZE (sizeof(ino_t) + sizeof(dev_t) + sizeof(off_t)) +/** For the user bloom filter also the uid is being hashed. */ #define USER_BLOOM_BUF_SIZE (GLOBAL_BLOOM_BUF_SIZE + sizeof(uid_t)) static void make_bloom_buf(struct stat64 *s, uint8_t buf[USER_BLOOM_BUF_SIZE])