cregit-Linux how code gets into the kernel

Release 4.7 net/ceph/crush/hash.c

Directory: net/ceph/crush
#ifdef __KERNEL__
# include <linux/crush/hash.h>
#else
# include "hash.h"
#endif

/*
 * Robert Jenkins' function for mixing 32-bit values
 * http://burtleburtle.net/bob/hash/evahash.html
 * a, b = random bits, c = input and output
 */

#define crush_hashmix(a, b, c) do {                    \
                a = a-b;  a = a-c;  a = a^(c>>13);      \
                b = b-c;  b = b-a;  b = b^(a<<8);       \
                c = c-a;  c = c-b;  c = c^(b>>13);      \
                a = a-b;  a = a-c;  a = a^(c>>12);      \
                b = b-c;  b = b-a;  b = b^(a<<16);      \
                c = c-a;  c = c-b;  c = c^(b>>5);       \
                a = a-b;  a = a-c;  a = a^(c>>3);       \
                b = b-c;  b = b-a;  b = b^(a<<10);      \
                c = c-a;  c = c-b;  c = c^(b>>15);      \
        } while (0)


#define crush_hash_seed 1315423911


static __u32 crush_hash32_rjenkins1(__u32 a) { __u32 hash = crush_hash_seed ^ a; __u32 b = a; __u32 x = 231232; __u32 y = 1232; crush_hashmix(b, x, hash); crush_hashmix(y, a, hash); return hash; }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil52100.00%2100.00%
Total52100.00%2100.00%


static __u32 crush_hash32_rjenkins1_2(__u32 a, __u32 b) { __u32 hash = crush_hash_seed ^ a ^ b; __u32 x = 231232; __u32 y = 1232; crush_hashmix(a, b, hash); crush_hashmix(x, a, hash); crush_hashmix(b, y, hash); return hash; }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil61100.00%2100.00%
Total61100.00%2100.00%


static __u32 crush_hash32_rjenkins1_3(__u32 a, __u32 b, __u32 c) { __u32 hash = crush_hash_seed ^ a ^ b ^ c; __u32 x = 231232; __u32 y = 1232; crush_hashmix(a, b, hash); crush_hashmix(c, x, hash); crush_hashmix(y, a, hash); crush_hashmix(b, x, hash); crush_hashmix(y, c, hash); return hash; }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil84100.00%2100.00%
Total84100.00%2100.00%


static __u32 crush_hash32_rjenkins1_4(__u32 a, __u32 b, __u32 c, __u32 d) { __u32 hash = crush_hash_seed ^ a ^ b ^ c ^ d; __u32 x = 231232; __u32 y = 1232; crush_hashmix(a, b, hash); crush_hashmix(c, d, hash); crush_hashmix(a, x, hash); crush_hashmix(y, b, hash); crush_hashmix(c, x, hash); crush_hashmix(y, d, hash); return hash; }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil98100.00%2100.00%
Total98100.00%2100.00%


static __u32 crush_hash32_rjenkins1_5(__u32 a, __u32 b, __u32 c, __u32 d, __u32 e) { __u32 hash = crush_hash_seed ^ a ^ b ^ c ^ d ^ e; __u32 x = 231232; __u32 y = 1232; crush_hashmix(a, b, hash); crush_hashmix(c, d, hash); crush_hashmix(e, x, hash); crush_hashmix(y, a, hash); crush_hashmix(b, x, hash); crush_hashmix(y, c, hash); crush_hashmix(d, x, hash); crush_hashmix(y, e, hash); return hash; }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil121100.00%2100.00%
Total121100.00%2100.00%


__u32 crush_hash32(int type, __u32 a) { switch (type) { case CRUSH_HASH_RJENKINS1: return crush_hash32_rjenkins1(a); default: return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil30100.00%1100.00%
Total30100.00%1100.00%


__u32 crush_hash32_2(int type, __u32 a, __u32 b) { switch (type) { case CRUSH_HASH_RJENKINS1: return crush_hash32_rjenkins1_2(a, b); default: return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil35100.00%1100.00%
Total35100.00%1100.00%


__u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c) { switch (type) { case CRUSH_HASH_RJENKINS1: return crush_hash32_rjenkins1_3(a, b, c); default: return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil40100.00%1100.00%
Total40100.00%1100.00%


__u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d) { switch (type) { case CRUSH_HASH_RJENKINS1: return crush_hash32_rjenkins1_4(a, b, c, d); default: return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil45100.00%1100.00%
Total45100.00%1100.00%


__u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d, __u32 e) { switch (type) { case CRUSH_HASH_RJENKINS1: return crush_hash32_rjenkins1_5(a, b, c, d, e); default: return 0; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil50100.00%1100.00%
Total50100.00%1100.00%


const char *crush_hash_name(int type) { switch (type) { case CRUSH_HASH_RJENKINS1: return "rjenkins1"; default: return "unknown"; } }

Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil26100.00%1100.00%
Total26100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
sage weilsage weil66298.66%266.67%
ilya dryomovilya dryomov91.34%133.33%
Total671100.00%3100.00%
Directory: net/ceph/crush
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}