git: 0f7573ffd614 - main - sctp: fix PR-SCTP stats when adding addtional streams
Michael Tuexen
tuexen at FreeBSD.org
Sun Jan 24 10:18:20 UTC 2021
The branch main has been updated by tuexen:
URL: https://cgit.FreeBSD.org/src/commit/?id=0f7573ffd6141b19419c9a6238246b9ba0e6dce6
commit 0f7573ffd6141b19419c9a6238246b9ba0e6dce6
Author: Michael Tuexen <tuexen at FreeBSD.org>
AuthorDate: 2021-01-23 23:50:33 +0000
Commit: Michael Tuexen <tuexen at FreeBSD.org>
CommitDate: 2021-01-23 23:50:33 +0000
sctp: fix PR-SCTP stats when adding addtional streams
MFC after: 1 week
---
sys/netinet/sctp_output.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c
index 67b1aad32f1c..d58ebf785238 100644
--- a/sys/netinet/sctp_output.c
+++ b/sys/netinet/sctp_output.c
@@ -12143,6 +12143,15 @@ sctp_send_str_reset_req(struct sctp_tcb *stcb,
*/
stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]);
stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
+#if defined(SCTP_DETAILED_STR_STATS)
+ for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
+ stcb->asoc.strmout[i].abandoned_sent[j] = oldstream[i].abandoned_sent[j];
+ stcb->asoc.strmout[i].abandoned_unsent[j] = oldstream[i].abandoned_unsent[j];
+ }
+#else
+ stcb->asoc.strmout[i].abandoned_sent[0] = oldstream[i].abandoned_sent[0];
+ stcb->asoc.strmout[i].abandoned_unsent[0] = oldstream[i].abandoned_unsent[0];
+#endif
stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered;
stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered;
stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
More information about the dev-commits-src-main
mailing list