Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 May 2019 09:29:50 +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-11@freebsd.org
Subject:   svn commit: r347679 - stable/11/sys/netinet
Message-ID:  <201905160929.x4G9TokR046116@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Thu May 16 09:29:49 2019
New Revision: 347679
URL: https://svnweb.freebsd.org/changeset/base/347679

Log:
  MFC r345505:
  
  Initialize scheduler specific data for the FCFS scheduler.
  This is joint work with rrs@. The issue was reported by using
  syzkaller.

Modified:
  stable/11/sys/netinet/sctp_ss_functions.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/netinet/sctp_ss_functions.c
==============================================================================
--- stable/11/sys/netinet/sctp_ss_functions.c	Thu May 16 09:28:34 2019	(r347678)
+++ stable/11/sys/netinet/sctp_ss_functions.c	Thu May 16 09:29:49 2019	(r347679)
@@ -836,6 +836,8 @@ sctp_ss_fcfs_init_stream(struct sctp_tcb *stcb, struct
 			stcb->asoc.ss_data.last_out_stream = strq;
 		}
 	}
+	strq->ss_params.fb.next_spoke.tqe_next = NULL;
+	strq->ss_params.fb.next_spoke.tqe_prev = NULL;
 	return;
 }
 



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