svn commit: r364568 - stable/12/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Aug 23 22:16:04 UTC 2020


Author: tuexen
Date: Sun Aug 23 22:16:03 2020
New Revision: 364568
URL: https://svnweb.freebsd.org/changeset/base/364568

Log:
  MFC r359301:
  Use consistent debug output.

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

Modified: stable/12/sys/netinet/sctputil.c
==============================================================================
--- stable/12/sys/netinet/sctputil.c	Sun Aug 23 22:13:57 2020	(r364567)
+++ stable/12/sys/netinet/sctputil.c	Sun Aug 23 22:16:03 2020	(r364568)
@@ -1670,7 +1670,7 @@ sctp_timeout_handler(void *t)
 		    (type != SCTP_TIMER_TYPE_ASOCKILL))) {
 			SCTP_INP_DECR_REF(inp);
 			SCTPDBG(SCTP_DEBUG_TIMER2,
-			    "Timer type = %d handler exiting due to closed socket\n",
+			    "Timer type %d handler exiting due to closed socket.\n",
 			    type);
 			CURVNET_RESTORE();
 			return;
@@ -1685,7 +1685,7 @@ sctp_timeout_handler(void *t)
 				SCTP_INP_DECR_REF(inp);
 			}
 			SCTPDBG(SCTP_DEBUG_TIMER2,
-			    "Timer type = %d handler exiting due to CLOSED association\n",
+			    "Timer type %d handler exiting due to CLOSED association.\n",
 			    type);
 			CURVNET_RESTORE();
 			return;
@@ -1701,7 +1701,7 @@ sctp_timeout_handler(void *t)
 			atomic_add_int(&stcb->asoc.refcnt, -1);
 		}
 		SCTPDBG(SCTP_DEBUG_TIMER2,
-		    "Timer type = %d handler exiting due to not being active\n",
+		    "Timer type %d handler exiting due to not being active.\n",
 		    type);
 		CURVNET_RESTORE();
 		return;
@@ -1719,7 +1719,7 @@ sctp_timeout_handler(void *t)
 				SCTP_INP_DECR_REF(inp);
 			}
 			SCTPDBG(SCTP_DEBUG_TIMER2,
-			    "Timer type = %d handler exiting due to CLOSED association\n",
+			    "Timer type %d handler exiting due to CLOSED association.\n",
 			    type);
 			CURVNET_RESTORE();
 			return;
@@ -2047,7 +2047,7 @@ out_decr:
 	}
 
 out_no_decr:
-	SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type = %d handler finished\n", type);
+	SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d handler finished.\n", type);
 	CURVNET_RESTORE();
 }
 


More information about the svn-src-all mailing list