[Bug 289734] panic tcp_usr_close while running mount command after configure NFS over TLS

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 21 Sep 2025 14:03:48 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=289734

--- Comment #3 from Rick Macklem <rmacklem@FreeBSD.org> ---
If you wanted to try something...
You could replace:
    KASSERT(inp != NULL, ("tcp_usr_close: inp == NULL"));
with
    if (inp == NULL)
         return;
at the beginning of tcp_usr_close() in /usr/src/sys/netinet/tcp_usrreq.c.

Then test to see what happens?

-- 
You are receiving this mail because:
You are the assignee for the bug.