diff options
-rw-r--r-- | sys/kern/subr_witness.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index 06ee342..c9e186d 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -192,6 +192,9 @@ static struct witness_order_list_entry order_lists[] = { { "uidinfo hash", &lock_class_mtx_sleep }, { "uidinfo struct", &lock_class_mtx_sleep }, { NULL, NULL }, + /* + * spin locks + */ #if defined(__i386__) && defined (SMP) { "com", &lock_class_mtx_spin }, #endif @@ -212,8 +215,8 @@ static struct witness_order_list_entry order_lists[] = { * leaf locks */ #ifdef SMP -#ifdef __i386__ { "ap boot", &lock_class_mtx_spin }, +#ifdef __i386__ { "imen", &lock_class_mtx_spin }, #endif { "smp rendezvous", &lock_class_mtx_spin }, |