Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 May 2015 13:11:13 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r283730 - stable/10/sys/netinet
Message-ID:  <201505291311.t4TDBD8Z052334@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505291311.t4TDBD8Z052334>