Deleted Added
full compact
37c37
< __FBSDID("$FreeBSD: head/sys/kern/kern_mutex.c 136437 2004-10-12 16:28:18Z ups $");
---
> __FBSDID("$FreeBSD: head/sys/kern/kern_mutex.c 136445 2004-10-12 18:36:20Z jhb $");
443d442
< struct turnstile *ts;
479c478
< ts = turnstile_lookup(&m->mtx_object);
---
> turnstile_lock(&m->mtx_object);
502d500
< MPASS(ts != NULL);
504c502
< turnstile_claim(ts);
---
> turnstile_claim(&m->mtx_object);
560c558
< turnstile_wait(ts, &m->mtx_object, mtx_owner(m));
---
> turnstile_wait(&m->mtx_object, mtx_owner(m));
647a646
> turnstile_lock(&m->mtx_object);