netns: constify net_hash_mix() and various callers
const qualifiers ease code review by making clear which objects are not written in a function. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
8f6320de5f
commit
6eada0110c
@ -107,7 +107,7 @@ static const struct nla_policy ifa_ipv4_policy[IFA_MAX+1] = {
|
||||
|
||||
static struct hlist_head inet_addr_lst[IN4_ADDR_HSIZE];
|
||||
|
||||
static u32 inet_addr_hash(struct net *net, __be32 addr)
|
||||
static u32 inet_addr_hash(const struct net *net, __be32 addr)
|
||||
{
|
||||
u32 val = (__force u32) addr ^ net_hash_mix(net);
|
||||
|
||||
|
@ -24,9 +24,9 @@
|
||||
#include <net/secure_seq.h>
|
||||
#include <net/ip.h>
|
||||
|
||||
static unsigned int inet_ehashfn(struct net *net, const __be32 laddr,
|
||||
const __u16 lport, const __be32 faddr,
|
||||
const __be16 fport)
|
||||
static u32 inet_ehashfn(const struct net *net, const __be32 laddr,
|
||||
const __u16 lport, const __be32 faddr,
|
||||
const __be16 fport)
|
||||
{
|
||||
static u32 inet_ehash_secret __read_mostly;
|
||||
|
||||
|
@ -64,11 +64,11 @@ EXPORT_SYMBOL_GPL(pingv6_ops);
|
||||
|
||||
static u16 ping_port_rover;
|
||||
|
||||
static inline int ping_hashfn(struct net *net, unsigned int num, unsigned int mask)
|
||||
static inline u32 ping_hashfn(const struct net *net, u32 num, u32 mask)
|
||||
{
|
||||
int res = (num + net_hash_mix(net)) & mask;
|
||||
u32 res = (num + net_hash_mix(net)) & mask;
|
||||
|
||||
pr_debug("hash(%d) = %d\n", num, res);
|
||||
pr_debug("hash(%u) = %u\n", num, res);
|
||||
return res;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(ping_hash);
|
||||
|
@ -318,8 +318,8 @@ static int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2)
|
||||
inet1->inet_rcv_saddr == inet2->inet_rcv_saddr));
|
||||
}
|
||||
|
||||
static unsigned int udp4_portaddr_hash(struct net *net, __be32 saddr,
|
||||
unsigned int port)
|
||||
static u32 udp4_portaddr_hash(const struct net *net, __be32 saddr,
|
||||
unsigned int port)
|
||||
{
|
||||
return jhash_1word((__force u32)saddr, net_hash_mix(net)) ^ port;
|
||||
}
|
||||
@ -421,9 +421,9 @@ static inline int compute_score2(struct sock *sk, struct net *net,
|
||||
return score;
|
||||
}
|
||||
|
||||
static unsigned int udp_ehashfn(struct net *net, const __be32 laddr,
|
||||
const __u16 lport, const __be32 faddr,
|
||||
const __be16 fport)
|
||||
static u32 udp_ehashfn(const struct net *net, const __be32 laddr,
|
||||
const __u16 lport, const __be32 faddr,
|
||||
const __be16 fport)
|
||||
{
|
||||
static u32 udp_ehash_secret __read_mostly;
|
||||
|
||||
|
@ -23,11 +23,11 @@
|
||||
#include <net/secure_seq.h>
|
||||
#include <net/ip.h>
|
||||
|
||||
static unsigned int inet6_ehashfn(struct net *net,
|
||||
const struct in6_addr *laddr,
|
||||
const u16 lport,
|
||||
const struct in6_addr *faddr,
|
||||
const __be16 fport)
|
||||
static u32 inet6_ehashfn(const struct net *net,
|
||||
const struct in6_addr *laddr,
|
||||
const u16 lport,
|
||||
const struct in6_addr *faddr,
|
||||
const __be16 fport)
|
||||
{
|
||||
static u32 inet6_ehash_secret __read_mostly;
|
||||
static u32 ipv6_hash_secret __read_mostly;
|
||||
|
@ -53,11 +53,11 @@
|
||||
#include <trace/events/skb.h>
|
||||
#include "udp_impl.h"
|
||||
|
||||
static unsigned int udp6_ehashfn(struct net *net,
|
||||
const struct in6_addr *laddr,
|
||||
const u16 lport,
|
||||
const struct in6_addr *faddr,
|
||||
const __be16 fport)
|
||||
static u32 udp6_ehashfn(const struct net *net,
|
||||
const struct in6_addr *laddr,
|
||||
const u16 lport,
|
||||
const struct in6_addr *faddr,
|
||||
const __be16 fport)
|
||||
{
|
||||
static u32 udp6_ehash_secret __read_mostly;
|
||||
static u32 udp_ipv6_hash_secret __read_mostly;
|
||||
@ -104,9 +104,9 @@ int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static unsigned int udp6_portaddr_hash(struct net *net,
|
||||
const struct in6_addr *addr6,
|
||||
unsigned int port)
|
||||
static u32 udp6_portaddr_hash(const struct net *net,
|
||||
const struct in6_addr *addr6,
|
||||
unsigned int port)
|
||||
{
|
||||
unsigned int hash, mix = net_hash_mix(net);
|
||||
|
||||
|
Reference in New Issue
Block a user