Author: tuexen
Date: Thu Oct  1 16:24:28 2020
New Revision: 366325
URL: https://svnweb.freebsd.org/changeset/base/366325

Log:
  MFC r366199:
  
  Cleanup, no functional change intended.

Modified:
  stable/12/sys/netinet/sctp_indata.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet/sctp_indata.c
==============================================================================
--- stable/12/sys/netinet/sctp_indata.c Thu Oct  1 16:23:35 2020        
(r366324)
+++ stable/12/sys/netinet/sctp_indata.c Thu Oct  1 16:24:28 2020        
(r366325)
@@ -5420,7 +5420,6 @@ sctp_flush_reassm_for_str_seq(struct sctp_tcb *stcb,
     struct sctp_queued_to_read *control, int ordered, uint32_t cumtsn)
 {
        struct sctp_tmit_chunk *chk, *nchk;
-       int cnt_removed = 0;
 
        /*
         * For now large messages held on the stream reasm that are complete
@@ -5437,12 +5436,11 @@ sctp_flush_reassm_for_str_seq(struct sctp_tcb *stcb,
        }
        TAILQ_FOREACH_SAFE(chk, &control->reasm, sctp_next, nchk) {
                /* Purge hanging chunks */
-               if (!asoc->idata_supported && (ordered == 0)) {
+               if (!asoc->idata_supported && !ordered) {
                        if (SCTP_TSN_GT(chk->rec.data.tsn, cumtsn)) {
                                break;
                        }
                }
-               cnt_removed++;
                TAILQ_REMOVE(&control->reasm, chk, sctp_next);
                if (asoc->size_on_reasm_queue >= chk->send_size) {
                        asoc->size_on_reasm_queue -= chk->send_size;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to