svn commit: r283730 - stable/10/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Fri May 29 13:11:14 UTC 2015
Author: tuexen
Date: Fri May 29 13:11:13 2015
New Revision: 283730
URL: https://svnweb.freebsd.org/changeset/base/283730
Log:
MFC r280439:
Fix an accounting bug related to the per stream chunk counter.
While there, don't refer to a net articifically.
Modified:
stable/10/sys/netinet/sctputil.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/netinet/sctputil.c
==============================================================================
--- stable/10/sys/netinet/sctputil.c Fri May 29 13:08:43 2015 (r283729)
+++ stable/10/sys/netinet/sctputil.c Fri May 29 13:11:13 2015 (r283730)
@@ -4891,13 +4891,9 @@ sctp_release_pr_sctp_chunk(struct sctp_t
chk->rec.data.payloadtype = sp->ppid;
chk->rec.data.context = sp->context;
chk->flags = sp->act_flags;
- if (sp->net)
- chk->whoTo = sp->net;
- else
- chk->whoTo = stcb->asoc.primary_destination;
- atomic_add_int(&chk->whoTo->ref_count, 1);
+ chk->whoTo = NULL;
chk->rec.data.TSN_seq = atomic_fetchadd_int(&stcb->asoc.sending_seq, 1);
- stcb->asoc.pr_sctp_cnt++;
+ strq->chunks_on_queues++;
TAILQ_INSERT_TAIL(&stcb->asoc.sent_queue, chk, sctp_next);
stcb->asoc.sent_queue_cnt++;
stcb->asoc.pr_sctp_cnt++;
More information about the svn-src-stable-10
mailing list