allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / jhash.h
blob432288ea906775201e44c679fc62e7a72dd43991
1 #ifndef _LINUX_JHASH_H
2 #define _LINUX_JHASH_H
4 /* jhash.h: Jenkins hash support.
6 * Copyright (C) 2006. Bob Jenkins (bob_jenkins@burtleburtle.net)
8 * http://burtleburtle.net/bob/hash/
10 * These are the credits from Bob's sources:
12 * lookup3.c, by Bob Jenkins, May 2006, Public Domain.
14 * These are functions for producing 32-bit hashes for hash table lookup.
15 * hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
16 * are externally useful functions. Routines to test the hash are included
17 * if SELF_TEST is defined. You can use this free for any purpose. It's in
18 * the public domain. It has no warranty.
20 * Copyright (C) 2009-2010 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu)
22 * I've modified Bob's hash to be useful in the Linux kernel, and
23 * any bugs present are my fault. Jozsef
26 #include <linux/bitops.h>
27 #include <asm/unaligned.h>
29 /* Best hash sizes are of power of two */
30 #define jhash_size(n) ((u32)1<<(n))
31 /* Mask the hash value, i.e (value & jhash_mask(n)) instead of (value % n) */
32 #define jhash_mask(n) (jhash_size(n)-1)
34 /* __jhash_mix - mix 3 32-bit values reversibly. */
35 #define __jhash_mix(a,b,c) \
36 { \
37 a -= c; a ^= rol32(c, 4); c += b; \
38 b -= a; b ^= rol32(a, 6); a += c; \
39 c -= b; c ^= rol32(b, 8); b += a; \
40 a -= c; a ^= rol32(c,16); c += b; \
41 b -= a; b ^= rol32(a,19); a += c; \
42 c -= b; c ^= rol32(b, 4); b += a; \
45 /* __jhash_final - final mixing of 3 32-bit values (a,b,c) into c */
46 #define __jhash_final(a,b,c) \
47 { \
48 c ^= b; c -= rol32(b,14); \
49 a ^= c; a -= rol32(c,11); \
50 b ^= a; b -= rol32(a,25); \
51 c ^= b; c -= rol32(b,16); \
52 a ^= c; a -= rol32(c,4); \
53 b ^= a; b -= rol32(a,14); \
54 c ^= b; c -= rol32(b,24); \
57 /* An arbitrary initial parameter */
58 #define JHASH_INITVAL 0xdeadbeef
60 /* jhash - hash an arbitrary key
61 * @k: sequence of bytes as key
62 * @length: the length of the key
63 * @initval: the previous hash, or an arbitray value
65 * The generic version, hashes an arbitrary sequence of bytes.
66 * No alignment or length assumptions are made about the input key.
68 * Returns the hash value of the key. The result depends on endianness.
70 static inline u32 jhash(const void *key, u32 length, u32 initval)
72 u32 a, b, c;
73 const u8 *k = key;
75 /* Set up the internal state */
76 a = b = c = JHASH_INITVAL + length + initval;
78 /* all but the last block: affect some 32 bits of (a,b,c) */
79 while (length > 12) {
80 a += __get_unaligned_cpu32(k);
81 b += __get_unaligned_cpu32(k + 4);
82 c += __get_unaligned_cpu32(k + 8);
83 __jhash_mix(a, b, c);
84 length -= 12;
85 k += 12;
88 /* last block: affect all 32 bits of (c) */
89 /* all the case statements fall through */
90 switch (length) {
91 case 12: c += (u32)k[11]<<24;
92 case 11: c += (u32)k[10]<<16;
93 case 10: c += (u32)k[9]<<8;
94 case 9 : c += k[8];
95 case 8 : b += (u32)k[7]<<24;
96 case 7 : b += (u32)k[6]<<16;
97 case 6 : b += (u32)k[5]<<8;
98 case 5 : b += k[4];
99 case 4 : a += (u32)k[3]<<24;
100 case 3 : a += (u32)k[2]<<16;
101 case 2 : a += (u32)k[1]<<8;
102 case 1 : a += k[0];
103 __jhash_final(a, b, c);
104 case 0 : /* Nothing left to add */
105 break;
108 return c;
111 /* jhash2 - hash an array of u32's
112 * @k: the key which must be an array of u32's
113 * @length: the number of u32's in the key
114 * @initval: the previous hash, or an arbitray value
116 * Returns the hash value of the key.
118 static inline u32 jhash2(const u32 *k, u32 length, u32 initval)
120 u32 a, b, c;
122 /* Set up the internal state */
123 a = b = c = JHASH_INITVAL + (length<<2) + initval;
125 /* handle most of the key */
126 while (length > 3) {
127 a += k[0];
128 b += k[1];
129 c += k[2];
130 __jhash_mix(a, b, c);
131 length -= 3;
132 k += 3;
135 /* handle the last 3 u32's: all the case statements fall through */
136 switch (length) {
137 case 3: c += k[2];
138 case 2: b += k[1];
139 case 1: a += k[0];
140 __jhash_final(a, b, c);
141 case 0: /* Nothing left to add */
142 break;
145 return c;
149 /* jhash_3words - hash exactly 3, 2 or 1 word(s) */
150 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval)
152 a += JHASH_INITVAL;
153 b += JHASH_INITVAL;
154 c += initval;
156 __jhash_final(a, b, c);
158 return c;
161 static inline u32 jhash_2words(u32 a, u32 b, u32 initval)
163 return jhash_3words(0, a, b, initval);
166 static inline u32 jhash_1word(u32 a, u32 initval)
168 return jhash_3words(0, 0, a, initval);
171 #endif /* _LINUX_JHASH_H */