]> Pileus Git - ~andy/linux/commitdiff
tcp: bind() optimize port allocation
authorFlavio Leitner <fbl@redhat.com>
Wed, 25 Jan 2012 08:34:52 +0000 (08:34 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 Jan 2012 02:50:43 +0000 (21:50 -0500)
Port autoselection finds a port and then drop the lock,
then right after that, gets the hash bucket again and lock it.

Fix it to go direct.

Signed-off-by: Flavio Leitner <fbl@redhat.com>
Signed-off-by: Marcelo Ricardo Leitner <mleitner@redhat.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/inet_connection_sock.c

index ecd19b5a7ee2c1948ded8a7c07d62ec21986e4c8..19d66cefd7d34beae89c617a10f195f2f097770f 100644 (file)
@@ -123,15 +123,13 @@ again:
                                                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 tb_found;
                                                }
                                        }
                                        if (!inet_csk(sk)->icsk_af_ops->bind_conflict(sk, tb)) {
-                                               spin_unlock(&head->lock);
                                                snum = rover;
-                                               goto have_snum;
+                                               goto tb_found;
                                        }
                                        goto next;
                                }