svn commit: r271123 - head/sys/netinet

Gleb Smirnoff glebius at FreeBSD.org
Thu Sep 4 19:28:03 UTC 2014


Author: glebius
Date: Thu Sep  4 19:28:02 2014
New Revision: 271123
URL: http://svnweb.freebsd.org/changeset/base/271123

Log:
  Satisfy assertion in m_demote().
  
  Sponsored by:	Nginx, Inc.

Modified:
  head/sys/netinet/tcp_reass.c

Modified: head/sys/netinet/tcp_reass.c
==============================================================================
--- head/sys/netinet/tcp_reass.c	Thu Sep  4 19:27:30 2014	(r271122)
+++ head/sys/netinet/tcp_reass.c	Thu Sep  4 19:28:02 2014	(r271123)
@@ -231,6 +231,7 @@ tcp_reass(struct tcpcb *tp, struct tcphd
 		tp->t_segq = m;
 		if (mq && th->th_seq + *tlenp == M_TCPHDR(mq)->th_seq) {
 			m->m_nextpkt = mq->m_nextpkt;
+			mq->m_nextpkt = NULL;
 			m_catpkt(m, mq);
 		} else
 			m->m_nextpkt = mq;


More information about the svn-src-all mailing list