diff options
author | Andrey Vagin <avagin@openvz.org> | 2012-11-22 01:13:58 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-22 15:30:14 -0500 |
commit | 2b9164771efe191c4ef266ae53c8c05ab92dd115 (patch) | |
tree | 7e972e21387ac04f22f5f6edc57ed1247b1854ea /net/ipv6 | |
parent | 242a18d1374cebacd301f6b0ce1fd70d6c5afee6 (diff) | |
download | blackbird-obmc-linux-2b9164771efe191c4ef266ae53c8c05ab92dd115.tar.gz blackbird-obmc-linux-2b9164771efe191c4ef266ae53c8c05ab92dd115.zip |
ipv6: adapt connect for repair move
This is work the same as for ipv4.
All other hacks about tcp repair are in common code for ipv4 and ipv6,
so this patch is enough for repairing ipv6 connections.
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Cc: James Morris <jmorris@namei.org>
Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Cc: Patrick McHardy <kaber@trash.net>
Cc: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: Andrey Vagin <avagin@openvz.org>
Acked-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-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 6c0f2526f3f1..6565cf55eb1e 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -295,7 +295,7 @@ static int tcp_v6_connect(struct sock *sk, struct sockaddr *uaddr, if (err) goto late_failure; - if (!tp->write_seq) + if (!tp->write_seq && likely(!tp->repair)) tp->write_seq = secure_tcpv6_sequence_number(np->saddr.s6_addr32, np->daddr.s6_addr32, inet->inet_sport, |