diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-08-24 06:26:44 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 18:08:44 -0400 |
commit | 2575b65434d56559bd03854450b9b6aaf19b9c90 (patch) | |
tree | 6e7ae9460a5a61b97f3964b2cb97ff5524e2557b /net/xfrm/xfrm_state.c | |
parent | a624c108e5595b5827796c253481436929cd5344 (diff) |
[XFRM]: Simplify xfrm_spi_hash
It can use __xfrm{4,6}_addr_hash().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_state.c')
-rw-r--r-- | net/xfrm/xfrm_state.c | 33 |
1 files changed, 9 insertions, 24 deletions
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 7e5daafc1863..98200397e098 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c | |||
@@ -107,35 +107,20 @@ static inline unsigned xfrm_src_hash(xfrm_address_t *addr, unsigned short family | |||
107 | return __xfrm_src_hash(addr, family, xfrm_state_hmask); | 107 | return __xfrm_src_hash(addr, family, xfrm_state_hmask); |
108 | } | 108 | } |
109 | 109 | ||
110 | static inline unsigned int __xfrm4_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, | 110 | static inline unsigned int |
111 | unsigned int hmask) | 111 | __xfrm_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, unsigned short family, |
112 | { | 112 | unsigned int hmask) |
113 | unsigned int h; | ||
114 | h = ntohl(addr->a4^spi^proto); | ||
115 | h = (h ^ (h>>10) ^ (h>>20)) & hmask; | ||
116 | return h; | ||
117 | } | ||
118 | |||
119 | static inline unsigned int __xfrm6_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, | ||
120 | unsigned int hmask) | ||
121 | { | ||
122 | unsigned int h; | ||
123 | h = ntohl(addr->a6[2]^addr->a6[3]^spi^proto); | ||
124 | h = (h ^ (h>>10) ^ (h>>20)) & hmask; | ||
125 | return h; | ||
126 | } | ||
127 | |||
128 | static inline | ||
129 | unsigned __xfrm_spi_hash(xfrm_address_t *addr, u32 spi, u8 proto, unsigned short family, | ||
130 | unsigned int hmask) | ||
131 | { | 113 | { |
114 | unsigned int h = spi ^ proto; | ||
132 | switch (family) { | 115 | switch (family) { |
133 | case AF_INET: | 116 | case AF_INET: |
134 | return __xfrm4_spi_hash(addr, spi, proto, hmask); | 117 | h ^= __xfrm4_addr_hash(addr); |
118 | break; | ||
135 | case AF_INET6: | 119 | case AF_INET6: |
136 | return __xfrm6_spi_hash(addr, spi, proto, hmask); | 120 | h ^= __xfrm6_addr_hash(addr); |
121 | break; | ||
137 | } | 122 | } |
138 | return 0; /*XXX*/ | 123 | return (h ^ (h >> 10) ^ (h >> 20)) & hmask; |
139 | } | 124 | } |
140 | 125 | ||
141 | static inline unsigned int | 126 | static inline unsigned int |