]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
tcp: remove unnecessary tcp_sk assignment.
authorDave Jones <davej@redhat.com>
Mon, 16 Jun 2014 20:30:36 +0000 (16:30 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Jun 2014 04:35:00 +0000 (21:35 -0700)
This variable is overwritten by the child socket assignment before
it ever gets used.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_fastopen.c

index 62e48cf84e602a005ab2ce61c058ca709702098a..9771563ab564923e325f5eb5341d7e6ae81a499a 100644 (file)
@@ -131,7 +131,7 @@ static bool tcp_fastopen_create_child(struct sock *sk,
                                      struct dst_entry *dst,
                                      struct request_sock *req)
 {
-       struct tcp_sock *tp = tcp_sk(sk);
+       struct tcp_sock *tp;
        struct request_sock_queue *queue = &inet_csk(sk)->icsk_accept_queue;
        struct sock *child;