diff options
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r-- | include/net/sctp/structs.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 917d425f0542..67592072a32e 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
@@ -902,7 +902,10 @@ struct sctp_transport { | |||
902 | * calculation completes (i.e. the DATA chunk | 902 | * calculation completes (i.e. the DATA chunk |
903 | * is SACK'd) clear this flag. | 903 | * is SACK'd) clear this flag. |
904 | */ | 904 | */ |
905 | int rto_pending; | 905 | __u8 rto_pending; |
906 | |||
907 | /* Flag to track the current fast recovery state */ | ||
908 | __u8 fast_recovery; | ||
906 | 909 | ||
907 | /* | 910 | /* |
908 | * These are the congestion stats. | 911 | * These are the congestion stats. |
@@ -921,6 +924,9 @@ struct sctp_transport { | |||
921 | /* Data that has been sent, but not acknowledged. */ | 924 | /* Data that has been sent, but not acknowledged. */ |
922 | __u32 flight_size; | 925 | __u32 flight_size; |
923 | 926 | ||
927 | /* TSN marking the fast recovery exit point */ | ||
928 | __u32 fast_recovery_exit; | ||
929 | |||
924 | /* Destination */ | 930 | /* Destination */ |
925 | struct dst_entry *dst; | 931 | struct dst_entry *dst; |
926 | /* Source address. */ | 932 | /* Source address. */ |