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

[email protected]
Newsgroups gmane.os.freebsd.devel.net
Message-ID <[email protected]/bugzilla/>
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=289734

--- Comment #3 from Rick Macklem <[email protected]> ---
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.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.