From cf9cd1298dc46e753db39e2c628da2a9109ec2fa Mon Sep 17 00:00:00 2001 From: pjd Date: Mon, 17 Mar 2008 11:48:40 +0000 Subject: - There is no more "uidinfo struct" mutex. - The "uidinfo hash" lock is now a rwlock. Reminded by: kib --- sys/kern/subr_witness.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index e2c7d6b..547b0c0 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -288,8 +288,7 @@ static struct witness_order_list_entry order_lists[] = { { "process group", &lock_class_mtx_sleep }, { "process lock", &lock_class_mtx_sleep }, { "session", &lock_class_mtx_sleep }, - { "uidinfo hash", &lock_class_mtx_sleep }, - { "uidinfo struct", &lock_class_mtx_sleep }, + { "uidinfo hash", &lock_class_rw }, #ifdef HWPMC_HOOKS { "pmc-sleep", &lock_class_mtx_sleep }, #endif -- cgit v1.1