diff options
Diffstat (limited to 'net/rds/connection.c')
-rw-r--r-- | net/rds/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/rds/connection.c b/net/rds/connection.c index 642ad42c416b..45e23660437a 100644 --- a/net/rds/connection.c +++ b/net/rds/connection.c | |||
@@ -52,9 +52,9 @@ static struct kmem_cache *rds_conn_slab; | |||
52 | static struct hlist_head *rds_conn_bucket(__be32 laddr, __be32 faddr) | 52 | static struct hlist_head *rds_conn_bucket(__be32 laddr, __be32 faddr) |
53 | { | 53 | { |
54 | /* Pass NULL, don't need struct net for hash */ | 54 | /* Pass NULL, don't need struct net for hash */ |
55 | unsigned long hash = inet_ehashfn(NULL, | 55 | unsigned long hash = __inet_ehashfn(be32_to_cpu(laddr), 0, |
56 | be32_to_cpu(laddr), 0, | 56 | be32_to_cpu(faddr), 0, |
57 | be32_to_cpu(faddr), 0); | 57 | inet_ehash_secret); |
58 | return &rds_conn_hash[hash & RDS_CONNECTION_HASH_MASK]; | 58 | return &rds_conn_hash[hash & RDS_CONNECTION_HASH_MASK]; |
59 | } | 59 | } |
60 | 60 | ||