diff options
author | mav <mav@FreeBSD.org> | 2010-06-21 21:15:51 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2010-06-21 21:15:51 +0000 |
commit | a21b0b9d72562b50c98654e6b8c9ad48dc711428 (patch) | |
tree | f4de1a1b560c229c19bf448f1dbbdfc3b7340ac5 /sys/kern/subr_witness.c | |
parent | 35a1c672259c184f4e60fd94b708049e0647e678 (diff) | |
download | FreeBSD-src-a21b0b9d72562b50c98654e6b8c9ad48dc711428.zip FreeBSD-src-a21b0b9d72562b50c98654e6b8c9ad48dc711428.tar.gz |
"time lock" is no longer a spin-lock since r209371.
Reported by: kib@
Diffstat (limited to 'sys/kern/subr_witness.c')
-rw-r--r-- | sys/kern/subr_witness.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index 30e971b..6218cb7 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -495,6 +495,7 @@ static struct witness_order_list_entry order_lists[] = { #ifdef HWPMC_HOOKS { "pmc-sleep", &lock_class_mtx_sleep }, #endif + { "time lock", &lock_class_mtx_sleep }, { NULL, NULL }, /* * Sockets @@ -654,7 +655,6 @@ static struct witness_order_list_entry order_lists[] = { { "callout", &lock_class_mtx_spin }, { "entropy harvest mutex", &lock_class_mtx_spin }, { "syscons video lock", &lock_class_mtx_spin }, - { "time lock", &lock_class_mtx_spin }, #ifdef SMP { "smp rendezvous", &lock_class_mtx_spin }, #endif |