The branch main has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=717bbade24857fd52724e9bb5ffdcfa0310f0a48
commit 717bbade24857fd52724e9bb5ffdcfa0310f0a48 Author: Michael Tuexen <tue...@freebsd.org> AuthorDate: 2025-08-06 10:24:54 +0000 Commit: Michael Tuexen <tue...@freebsd.org> CommitDate: 2025-08-06 10:24:54 +0000 rack, bbr: minor cleanup No functional change intended. Reviewed by: Nick Banks MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D51734 --- sys/netinet/tcp_stacks/rack_bbr_common.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/netinet/tcp_stacks/rack_bbr_common.c b/sys/netinet/tcp_stacks/rack_bbr_common.c index d1c4ba58bf55..fb013d3d17f0 100644 --- a/sys/netinet/tcp_stacks/rack_bbr_common.c +++ b/sys/netinet/tcp_stacks/rack_bbr_common.c @@ -509,11 +509,9 @@ void ctf_do_dropwithreset(struct mbuf *m, struct tcpcb *tp, struct tcphdr *th, int32_t rstreason, int32_t tlen) { - if (tp != NULL) { - tcp_dropwithreset(m, th, tp, tlen, rstreason); + tcp_dropwithreset(m, th, tp, tlen, rstreason); + if (tp != NULL) INP_WUNLOCK(tptoinpcb(tp)); - } else - tcp_dropwithreset(m, th, NULL, tlen, rstreason); } void