AF_UNIX: assert that we're not acquiring the same lock

This commit is contained in:
Matt Macy 2018-05-24 15:28:16 +00:00
parent 0c89167c76
commit 16529dace8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334159

View File

@ -344,6 +344,7 @@ unp_pcb_rele(struct unpcb *unp)
static void
unp_pcb_lock2(struct unpcb *unp, struct unpcb *unp2)
{
MPASS(unp != unp2);
UNP_PCB_UNLOCK_ASSERT(unp);
UNP_PCB_UNLOCK_ASSERT(unp2);
if ((uintptr_t)unp2 > (uintptr_t)unp) {
@ -375,6 +376,7 @@ unp_pcb_owned_lock2_slowpath(struct unpcb *unp, struct unpcb **unp2p, int *freed
freed = 0; \
UNP_PCB_LOCK_ASSERT((unp)); \
UNP_PCB_UNLOCK_ASSERT((unp2)); \
MPASS(unp != unp2); \
if (__predict_true(UNP_PCB_TRYLOCK((unp2)))) \
break; \
else if ((uintptr_t)(unp2) > (uintptr_t)(unp)) \