Date: Sun, 23 Aug 2020 22:16:03 +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-12@freebsd.org Subject: svn commit: r364568 - stable/12/sys/netinet Message-ID: <202008232216.07NMG3hB092301@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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(); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008232216.07NMG3hB092301>