The branch stable/13 has been updated by tuexen:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=21398f02b0c7913f815ae6ded426da60d92c635b

commit 21398f02b0c7913f815ae6ded426da60d92c635b
Author:     Michael Tuexen <tue...@freebsd.org>
AuthorDate: 2021-01-23 23:50:33 +0000
Commit:     Michael Tuexen <tue...@freebsd.org>
CommitDate: 2021-03-02 12:27:13 +0000

    sctp: fix PR-SCTP stats when adding addtional streams
    
    (cherry picked from commit 0f7573ffd6141b19419c9a6238246b9ba0e6dce6)
---
 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;
_______________________________________________
dev-commits-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"

Reply via email to