diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c index 21ed07665872..16cb49eb5373 100644 --- a/sys/kern/uipc_socket.c +++ b/sys/kern/uipc_socket.c @@ -426,7 +426,10 @@ soclose(so) } /* - * Must be called at splnet... + * soabort() must not be called with any socket locks held, as it calls + * into the protocol, which will call back into the socket code causing + * it to acquire additional socket locks that may cause recursion or lock + * order reversals. */ int soabort(so)