Use consistent debug output.

MFC after:		1 week
This commit is contained in:
Michael Tuexen 2020-03-25 13:19:41 +00:00
parent e056fafd92
commit 23e3c0880d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359301

View File

@ -1674,7 +1674,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;
@ -1689,7 +1689,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;
@ -1705,7 +1705,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;
@ -1723,7 +1723,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;
@ -2051,7 +2051,7 @@ sctp_timeout_handler(void *t)
}
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();
NET_EPOCH_EXIT(et);
}