aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/sctp
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/sctp')
-rw-r--r--include/net/sctp/sctp.h5
-rw-r--r--include/net/sctp/structs.h8
2 files changed, 8 insertions, 5 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h
index 57ed3e323d97..dbfde62f3608 100644
--- a/include/net/sctp/sctp.h
+++ b/include/net/sctp/sctp.h
@@ -368,11 +368,6 @@ void sctp_sysctl_unregister(void);
368#else 368#else
369static inline void sctp_sysctl_register(void) { return; } 369static inline void sctp_sysctl_register(void) { return; }
370static inline void sctp_sysctl_unregister(void) { return; } 370static inline void sctp_sysctl_unregister(void) { return; }
371static inline int sctp_sysctl_jiffies_ms(ctl_table *table, int __user *name, int nlen,
372 void __user *oldval, size_t __user *oldlenp,
373 void __user *newval, size_t newlen) {
374 return -ENOSYS;
375}
376#endif 371#endif
377 372
378/* Size of Supported Address Parameter for 'x' address types. */ 373/* Size of Supported Address Parameter for 'x' address types. */
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 9c827a749b6f..8966599ddb9f 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -1661,6 +1661,9 @@ struct sctp_association {
1661 /* Transport to which SHUTDOWN chunk was last sent. */ 1661 /* Transport to which SHUTDOWN chunk was last sent. */
1662 struct sctp_transport *shutdown_last_sent_to; 1662 struct sctp_transport *shutdown_last_sent_to;
1663 1663
1664 /* How many times have we resent a SHUTDOWN */
1665 int shutdown_retries;
1666
1664 /* Transport to which INIT chunk was last sent. */ 1667 /* Transport to which INIT chunk was last sent. */
1665 struct sctp_transport *init_last_sent_to; 1668 struct sctp_transport *init_last_sent_to;
1666 1669
@@ -1695,6 +1698,11 @@ struct sctp_association {
1695 */ 1698 */
1696 __u16 unack_data; 1699 __u16 unack_data;
1697 1700
1701 /* The total number of data chunks that we've had to retransmit
1702 * as the result of a T3 timer expiration
1703 */
1704 __u32 rtx_data_chunks;
1705
1698 /* This is the association's receive buffer space. This value is used 1706 /* This is the association's receive buffer space. This value is used
1699 * to set a_rwnd field in an INIT or a SACK chunk. 1707 * to set a_rwnd field in an INIT or a SACK chunk.
1700 */ 1708 */