Author: tuexen
Date: Tue Mar 24 14:51:46 2015
New Revision: 280439
URL: https://svnweb.freebsd.org/changeset/base/280439

Log:
  Fix an accounting bug related to the per stream chunk counter.
  While there, don't refer to a net articifically.
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctputil.c

Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c Tue Mar 24 14:36:10 2015        (r280438)
+++ head/sys/netinet/sctputil.c Tue Mar 24 14:51:46 2015        (r280439)
@@ -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++;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to