svn commit: r294143 - stable/10/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Sat Jan 16 12:36:11 UTC 2016
Author: tuexen
Date: Sat Jan 16 12:36:09 2016
New Revision: 294143
URL: https://svnweb.freebsd.org/changeset/base/294143
Log:
MFC r285886:
Fix and improve a debug message. The SID was reported as an SSN.
Modified:
stable/10/sys/netinet/sctp_indata.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/netinet/sctp_indata.c
==============================================================================
--- stable/10/sys/netinet/sctp_indata.c Sat Jan 16 12:33:45 2016 (r294142)
+++ stable/10/sys/netinet/sctp_indata.c Sat Jan 16 12:36:09 2016 (r294143)
@@ -578,10 +578,10 @@ sctp_queue_data_to_stream(struct sctp_tc
sctp_log_strm_del(control, NULL, SCTP_STR_LOG_FROM_INTO_STRD);
}
SCTPDBG(SCTP_DEBUG_INDATA1,
- "queue to stream called for ssn:%u lastdel:%u nxt:%u\n",
- (uint32_t) control->sinfo_stream,
- (uint32_t) strm->last_sequence_delivered,
- (uint32_t) nxt_todel);
+ "queue to stream called for sid:%u ssn:%u tsn:%u lastdel:%u nxt:%u\n",
+ (uint32_t) control->sinfo_stream, (uint32_t) control->sinfo_ssn,
+ (uint32_t) control->sinfo_tsn,
+ (uint32_t) strm->last_sequence_delivered, (uint32_t) nxt_todel);
if (SCTP_SSN_GE(strm->last_sequence_delivered, control->sinfo_ssn)) {
/* The incoming sseq is behind where we last delivered? */
SCTPDBG(SCTP_DEBUG_INDATA1, "Duplicate S-SEQ:%d delivered:%d from peer, Abort association\n",
More information about the svn-src-stable
mailing list