diff options
Diffstat (limited to 'net/dccp/output.c')
-rw-r--r-- | net/dccp/output.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/dccp/output.c b/net/dccp/output.c index 08ee5547a2f2..0994b13f0f15 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c | |||
@@ -448,7 +448,6 @@ static inline void dccp_connect_init(struct sock *sk) | |||
448 | 448 | ||
449 | dccp_sync_mss(sk, dst_mtu(dst)); | 449 | dccp_sync_mss(sk, dst_mtu(dst)); |
450 | 450 | ||
451 | dccp_update_gss(sk, dp->dccps_iss); | ||
452 | /* | 451 | /* |
453 | * SWL and AWL are initially adjusted so that they are not less than | 452 | * SWL and AWL are initially adjusted so that they are not less than |
454 | * the initial Sequence Numbers received and sent, respectively: | 453 | * the initial Sequence Numbers received and sent, respectively: |
@@ -457,8 +456,13 @@ static inline void dccp_connect_init(struct sock *sk) | |||
457 | * These adjustments MUST be applied only at the beginning of the | 456 | * These adjustments MUST be applied only at the beginning of the |
458 | * connection. | 457 | * connection. |
459 | */ | 458 | */ |
459 | dccp_update_gss(sk, dp->dccps_iss); | ||
460 | dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss)); | 460 | dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss)); |
461 | 461 | ||
462 | /* S.GAR - greatest valid acknowledgement number received on a non-Sync; | ||
463 | * initialized to S.ISS (sec. 8.5) */ | ||
464 | dp->dccps_gar = dp->dccps_iss; | ||
465 | |||
462 | icsk->icsk_retransmits = 0; | 466 | icsk->icsk_retransmits = 0; |
463 | init_timer(&dp->dccps_xmit_timer); | 467 | init_timer(&dp->dccps_xmit_timer); |
464 | dp->dccps_xmit_timer.data = (unsigned long)sk; | 468 | dp->dccps_xmit_timer.data = (unsigned long)sk; |