aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2021-02-01 13:03:41 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2021-02-01 13:04:57 +0000
commitbdd4630c9a9cea64830f981fc897ac953c48892c (patch)
tree5e42dfd1c6aec3f15c3307312093124eef3e23f9 /sys/netinet
parent69c5fa5cd1ec9b09ed88a086607a8a0993818db9 (diff)
downloadsrc-bdd4630c9a9cea64830f981fc897ac953c48892c.tar.gz
src-bdd4630c9a9cea64830f981fc897ac953c48892c.zip
sctp: small cleanup, no functional change intended.
MFC after: 3 days
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/sctputil.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/netinet/sctputil.c b/sys/netinet/sctputil.c
index 084b7bd6af72..319344842d5f 100644
--- a/sys/netinet/sctputil.c
+++ b/sys/netinet/sctputil.c
@@ -2032,14 +2032,13 @@ sctp_timeout_handler(void *t)
sctp_inpcb_free(inp, SCTP_FREE_SHOULD_USE_ABORT,
SCTP_CALLED_FROM_INPKILL_TIMER);
inp = NULL;
- goto out_no_decr;
+ goto out_decr;
case SCTP_TIMER_TYPE_ASOCKILL:
KASSERT(inp != NULL && stcb != NULL && net == NULL,
("timeout of type %d: inp = %p, stcb = %p, net = %p",
type, inp, stcb, net));
SCTP_STAT_INCR(sctps_timoassockill);
/* Can we free it yet? */
- SCTP_INP_DECR_REF(inp);
sctp_timer_stop(SCTP_TIMER_TYPE_ASOCKILL, inp, stcb, NULL,
SCTP_FROM_SCTPUTIL + SCTP_LOC_1);
(void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
@@ -2049,7 +2048,7 @@ sctp_timeout_handler(void *t)
* duplicate unlock or unlock of a free mtx :-0
*/
stcb = NULL;
- goto out_no_decr;
+ goto out_decr;
case SCTP_TIMER_TYPE_ADDR_WQ:
KASSERT(inp == NULL && stcb == NULL && net == NULL,
("timeout of type %d: inp = %p, stcb = %p, net = %p",
@@ -2107,7 +2106,6 @@ out_decr:
if (net != NULL) {
sctp_free_remote_addr(net);
}
-out_no_decr:
SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d handler finished.\n", type);
CURVNET_RESTORE();
NET_EPOCH_EXIT(et);