diff options
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index e3d9f4559c99..45a95e032bdf 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -406,7 +406,7 @@ static int tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
406 | 406 | ||
407 | tp = tcp_sk(sk); | 407 | tp = tcp_sk(sk); |
408 | /* XXX (TFO) - tp->snd_una should be ISN (tcp_create_openreq_child() */ | 408 | /* XXX (TFO) - tp->snd_una should be ISN (tcp_create_openreq_child() */ |
409 | fastopen = tp->fastopen_rsk; | 409 | fastopen = rcu_dereference(tp->fastopen_rsk); |
410 | snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una; | 410 | snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una; |
411 | if (sk->sk_state != TCP_LISTEN && | 411 | if (sk->sk_state != TCP_LISTEN && |
412 | !between(seq, snd_una, tp->snd_nxt)) { | 412 | !between(seq, snd_una, tp->snd_nxt)) { |