inet: get rid of last __inet_hash_connect() argument

We now always call __inet_hash_nolisten(), no need to pass it
as an argument.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eric Dumazet
2015-03-18 14:05:37 -07:00
committed by David S. Miller
parent 77a6a471bc
commit b4d6444ea3
3 changed files with 6 additions and 9 deletions

View File

@@ -270,6 +270,6 @@ int inet6_hash_connect(struct inet_timewait_death_row *death_row,
struct sock *sk)
{
return __inet_hash_connect(death_row, sk, inet6_sk_port_offset(sk),
__inet6_check_established, __inet_hash_nolisten);
__inet6_check_established);
}
EXPORT_SYMBOL_GPL(inet6_hash_connect);