Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open huge amount of outgoing connections (unable to bind ... )

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Le mardi 20 avril 2010 à 16:49 -0700, Ben Greear a écrit :

I believe the bsockets 'optimization' is a bug, we should remove it.

This is a stable candidate (2.6.30+)

[PATCH net-next-2.6] tcp: remove bsockets count

Counting number of bound sockets to avoid a loop is buggy, since we cant
know how many IP addresses are in use. When threshold is reached, we try
5 random slots and can fail while there are plenty available ports.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
---
 include/net/inet_hashtables.h   |    2 --
 net/ipv4/inet_connection_sock.c |    5 -----
 net/ipv4/inet_hashtables.c      |    5 -----
 3 files changed, 12 deletions(-)

diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h
index 74358d1..e0f3a05 100644
--- a/include/net/inet_hashtables.h
+++ b/include/net/inet_hashtables.h
@@ -150,8 +150,6 @@ struct inet_hashinfo {
 	 */
 	struct inet_listen_hashbucket	listening_hash[INET_LHTABLE_SIZE]
 					____cacheline_aligned_in_smp;
-
-	atomic_t			bsockets;
 };
 
 static inline struct inet_ehash_bucket *inet_ehash_bucket(
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c
index 8da6429..0bbfd00 100644
--- a/net/ipv4/inet_connection_sock.c
+++ b/net/ipv4/inet_connection_sock.c
@@ -119,11 +119,6 @@ again:
 					    (tb->num_owners < smallest_size || smallest_size == -1)) {
 						smallest_size = tb->num_owners;
 						smallest_rover = rover;
-						if (atomic_read(&hashinfo->bsockets) > (high - low) + 1) {
-							spin_unlock(&head->lock);
-							snum = smallest_rover;
-							goto have_snum;
-						}
 					}
 					goto next;
 				}
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c
index 2b79377..4bc921f 100644
--- a/net/ipv4/inet_hashtables.c
+++ b/net/ipv4/inet_hashtables.c
@@ -62,8 +62,6 @@ void inet_bind_hash(struct sock *sk, struct inet_bind_bucket *tb,
 {
 	struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
 
-	atomic_inc(&hashinfo->bsockets);
-
 	inet_sk(sk)->inet_num = snum;
 	sk_add_bind_node(sk, &tb->owners);
 	tb->num_owners++;
@@ -81,8 +79,6 @@ static void __inet_put_port(struct sock *sk)
 	struct inet_bind_hashbucket *head = &hashinfo->bhash[bhash];
 	struct inet_bind_bucket *tb;
 
-	atomic_dec(&hashinfo->bsockets);
-
 	spin_lock(&head->lock);
 	tb = inet_csk(sk)->icsk_bind_hash;
 	__sk_del_bind_node(sk);
@@ -551,7 +547,6 @@ void inet_hashinfo_init(struct inet_hashinfo *h)
 {
 	int i;
 
-	atomic_set(&h->bsockets, 0);
 	for (i = 0; i < INET_LHTABLE_SIZE; i++) {
 		spin_lock_init(&h->listening_hash[i].lock);
 		INIT_HLIST_NULLS_HEAD(&h->listening_hash[i].head,


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open huge a ..., Gaspar Chilingarov, (Tue Apr 20, 3:17 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 4:18 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 4:20 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 4:20 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 4:35 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 4:57 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Eric Dumazet, (Tue Apr 20, 5:05 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Gaspar Chilingarov, (Tue Apr 20, 5:12 pm)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Evgeniy Polyakov, (Wed Apr 21, 11:27 am)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Evgeniy Polyakov, (Wed Apr 21, 11:58 am)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Michael S. Tsirkin, (Sun Apr 25, 7:26 am)
Re: PROBLEM: Linux kernel 2.6.31 IPv4 TCP fails to open hu ..., Michael S. Tsirkin, (Sun Apr 25, 9:35 am)