Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Sep 2025 14:03:48 +0000
From:      bugzilla-noreply@freebsd.org
To:        net@FreeBSD.org
Subject:   [Bug 289734] panic tcp_usr_close while running mount command after configure NFS over TLS
Message-ID:  <bug-289734-7501-sSMjPX5R0q@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-289734-7501@https.bugs.freebsd.org/bugzilla/>
References:  <bug-289734-7501@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D289734

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

Then test to see what happens?

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-289734-7501-sSMjPX5R0q>