tcp: Check hlist_empty(&tb->bhash2) instead of hlist_empty(&tb->owners).
We use hlist_empty(&tb->owners) to check if the bhash bucket has a socket. We can check the child bhash2 buckets instead. For this to work, the bhash2 bucket must be freed before the bhash bucket. Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com> Reviewed-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
b82ba728cc
commit
8002d44fe8
@ -474,7 +474,7 @@ void inet_csk_update_fastreuse(struct inet_bind_bucket *tb,
|
||||
kuid_t uid = sock_i_uid(sk);
|
||||
bool reuse = sk->sk_reuse && sk->sk_state != TCP_LISTEN;
|
||||
|
||||
if (hlist_empty(&tb->owners)) {
|
||||
if (hlist_empty(&tb->bhash2)) {
|
||||
tb->fastreuse = reuse;
|
||||
if (sk->sk_reuseport) {
|
||||
tb->fastreuseport = FASTREUSEPORT_ANY;
|
||||
@ -566,7 +566,7 @@ int inet_csk_get_port(struct sock *sk, unsigned short snum)
|
||||
}
|
||||
|
||||
if (!found_port) {
|
||||
if (!hlist_empty(&tb->owners)) {
|
||||
if (!hlist_empty(&tb->bhash2)) {
|
||||
if (sk->sk_reuse == SK_FORCE_REUSE ||
|
||||
(tb->fastreuse > 0 && reuse) ||
|
||||
sk_reuseport_match(tb, sk))
|
||||
@ -608,11 +608,10 @@ success:
|
||||
|
||||
fail_unlock:
|
||||
if (ret) {
|
||||
if (bhash2_created)
|
||||
inet_bind2_bucket_destroy(hinfo->bind2_bucket_cachep, tb2);
|
||||
if (bhash_created)
|
||||
inet_bind_bucket_destroy(hinfo->bind_bucket_cachep, tb);
|
||||
if (bhash2_created)
|
||||
inet_bind2_bucket_destroy(hinfo->bind2_bucket_cachep,
|
||||
tb2);
|
||||
}
|
||||
if (head2_lock_acquired)
|
||||
spin_unlock(&head2->lock);
|
||||
|
Reference in New Issue
Block a user