diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-22 23:44:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-24 17:52:30 -0400 |
commit | d8ed625044cdede8661324074aaad7459a1e3c7a (patch) | |
tree | baa489eef4a565cf732cae57fc1df38f04eaf13a /net/ipv4/tcp_minisocks.c | |
parent | 729bf329c79684327a55c33cdf21222543a1e5f1 (diff) |
tcp: factorize sk_txhash init
Neal suggested to move sk_txhash init into tcp_create_openreq_child(),
called both from IPv4 and IPv6.
This opportunity was missed in commit 58d607d3e52f ("tcp: provide
skb->hash to synack packets")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_minisocks.c')
-rw-r--r-- | net/ipv4/tcp_minisocks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index 10933d01b982..85830bb92d04 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c | |||
@@ -471,6 +471,7 @@ struct sock *tcp_create_openreq_child(struct sock *sk, struct request_sock *req, | |||
471 | tcp_enable_early_retrans(newtp); | 471 | tcp_enable_early_retrans(newtp); |
472 | newtp->tlp_high_seq = 0; | 472 | newtp->tlp_high_seq = 0; |
473 | newtp->lsndtime = treq->snt_synack.stamp_jiffies; | 473 | newtp->lsndtime = treq->snt_synack.stamp_jiffies; |
474 | newsk->sk_txhash = treq->txhash; | ||
474 | newtp->last_oow_ack_time = 0; | 475 | newtp->last_oow_ack_time = 0; |
475 | newtp->total_retrans = req->num_retrans; | 476 | newtp->total_retrans = req->num_retrans; |
476 | 477 | ||