diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 14 | ||||
-rw-r--r-- | net/sunrpc/svcsock.c | 2 |
2 files changed, 14 insertions, 2 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index cac2e774dd81..3e6c694bbad1 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c | |||
@@ -101,10 +101,22 @@ static void ip_map_put(struct cache_head *item, struct cache_detail *cd) | |||
101 | } | 101 | } |
102 | } | 102 | } |
103 | 103 | ||
104 | #if IP_HASHBITS == 8 | ||
105 | /* hash_long on a 64 bit machine is currently REALLY BAD for | ||
106 | * IP addresses in reverse-endian (i.e. on a little-endian machine). | ||
107 | * So use a trivial but reliable hash instead | ||
108 | */ | ||
109 | static inline int hash_ip(unsigned long ip) | ||
110 | { | ||
111 | int hash = ip ^ (ip>>16); | ||
112 | return (hash ^ (hash>>8)) & 0xff; | ||
113 | } | ||
114 | #endif | ||
115 | |||
104 | static inline int ip_map_hash(struct ip_map *item) | 116 | static inline int ip_map_hash(struct ip_map *item) |
105 | { | 117 | { |
106 | return hash_str(item->m_class, IP_HASHBITS) ^ | 118 | return hash_str(item->m_class, IP_HASHBITS) ^ |
107 | hash_long((unsigned long)item->m_addr.s_addr, IP_HASHBITS); | 119 | hash_ip((unsigned long)item->m_addr.s_addr); |
108 | } | 120 | } |
109 | static inline int ip_map_match(struct ip_map *item, struct ip_map *tmp) | 121 | static inline int ip_map_match(struct ip_map *item, struct ip_map *tmp) |
110 | { | 122 | { |
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index d68eba481291..e67613e4eb18 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
@@ -1026,7 +1026,7 @@ svc_tcp_recvfrom(struct svc_rqst *rqstp) | |||
1026 | } else { | 1026 | } else { |
1027 | printk(KERN_NOTICE "%s: recvfrom returned errno %d\n", | 1027 | printk(KERN_NOTICE "%s: recvfrom returned errno %d\n", |
1028 | svsk->sk_server->sv_name, -len); | 1028 | svsk->sk_server->sv_name, -len); |
1029 | svc_sock_received(svsk); | 1029 | goto err_delete; |
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | return len; | 1032 | return len; |