diff options
Diffstat (limited to 'net/xfrm/xfrm_hash.h')
| -rw-r--r-- | net/xfrm/xfrm_hash.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/xfrm/xfrm_hash.h b/net/xfrm/xfrm_hash.h index e5195c99f71e..8e69533d2313 100644 --- a/net/xfrm/xfrm_hash.h +++ b/net/xfrm/xfrm_hash.h | |||
| @@ -16,7 +16,8 @@ static inline unsigned int __xfrm6_addr_hash(xfrm_address_t *addr) | |||
| 16 | 16 | ||
| 17 | static inline unsigned int __xfrm4_daddr_saddr_hash(xfrm_address_t *daddr, xfrm_address_t *saddr) | 17 | static inline unsigned int __xfrm4_daddr_saddr_hash(xfrm_address_t *daddr, xfrm_address_t *saddr) |
| 18 | { | 18 | { |
| 19 | return ntohl(daddr->a4 + saddr->a4); | 19 | u32 sum = (__force u32)daddr->a4 + (__force u32)saddr->a4; |
| 20 | return ntohl((__force __be32)sum); | ||
| 20 | } | 21 | } |
| 21 | 22 | ||
| 22 | static inline unsigned int __xfrm6_daddr_saddr_hash(xfrm_address_t *daddr, xfrm_address_t *saddr) | 23 | static inline unsigned int __xfrm6_daddr_saddr_hash(xfrm_address_t *daddr, xfrm_address_t *saddr) |
| @@ -54,7 +55,7 @@ static inline unsigned __xfrm_src_hash(xfrm_address_t *daddr, | |||
| 54 | case AF_INET6: | 55 | case AF_INET6: |
| 55 | h ^= __xfrm6_daddr_saddr_hash(daddr, saddr); | 56 | h ^= __xfrm6_daddr_saddr_hash(daddr, saddr); |
| 56 | break; | 57 | break; |
| 57 | }; | 58 | } |
| 58 | return (h ^ (h >> 16)) & hmask; | 59 | return (h ^ (h >> 16)) & hmask; |
| 59 | } | 60 | } |
| 60 | 61 | ||
| @@ -101,7 +102,7 @@ static inline unsigned int __sel_hash(struct xfrm_selector *sel, unsigned short | |||
| 101 | 102 | ||
| 102 | h = __xfrm6_daddr_saddr_hash(daddr, saddr); | 103 | h = __xfrm6_daddr_saddr_hash(daddr, saddr); |
| 103 | break; | 104 | break; |
| 104 | }; | 105 | } |
| 105 | h ^= (h >> 16); | 106 | h ^= (h >> 16); |
| 106 | return h & hmask; | 107 | return h & hmask; |
| 107 | } | 108 | } |
| @@ -118,7 +119,7 @@ static inline unsigned int __addr_hash(xfrm_address_t *daddr, xfrm_address_t *sa | |||
| 118 | case AF_INET6: | 119 | case AF_INET6: |
| 119 | h = __xfrm6_daddr_saddr_hash(daddr, saddr); | 120 | h = __xfrm6_daddr_saddr_hash(daddr, saddr); |
| 120 | break; | 121 | break; |
| 121 | }; | 122 | } |
| 122 | h ^= (h >> 16); | 123 | h ^= (h >> 16); |
| 123 | return h & hmask; | 124 | return h & hmask; |
| 124 | } | 125 | } |
