diff options
| author | Al Viro <[email protected]> | 2006-09-28 01:43:07 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2006-09-29 01:02:25 +0000 |
| commit | 4f765d842fa6e6fe15d555b247b640118d65b4dd (patch) | |
| tree | 7a7d3ef7f8013c76811558c045d7aacfc7feeaff /net/ipv4/inet_hashtables.c | |
| parent | [IPV4]: FRA_{DST,SRC} annotated (diff) | |
| download | kernel-4f765d842fa6e6fe15d555b247b640118d65b4dd.tar.gz kernel-4f765d842fa6e6fe15d555b247b640118d65b4dd.zip | |
[IPV4]: INET_MATCH() annotations
INET_MATCH() and friends depend on an interesting set of kludges:
* there's a pair of adjacent fields in struct inet_sock - __be16 dport
followed by __u16 num. We want to search by pair, so we combine the keys into
a single 32bit value and compare with 32bit value read from &...->dport.
* on 64bit targets we combine comparisons with pair of adjacent __be32
fields in the same way.
Make sure that we don't mix those values with anything else and that pairs
we form them from have correct types.
Signed-off-by: Al Viro <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
| -rw-r--r-- | net/ipv4/inet_hashtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index fb296c9a7f3f..729d1eb39483 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c @@ -201,7 +201,7 @@ static int __inet_check_established(struct inet_timewait_death_row *death_row, u32 saddr = inet->daddr; int dif = sk->sk_bound_dev_if; INET_ADDR_COOKIE(acookie, saddr, daddr) - const __u32 ports = INET_COMBINED_PORTS(inet->dport, lport); + const __portpair ports = INET_COMBINED_PORTS(inet->dport, lport); unsigned int hash = inet_ehashfn(daddr, lport, saddr, inet->dport); struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); struct sock *sk2; |
