diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-05 23:32:32 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-05 23:32:32 +0000 |
commit | 028e84c68b3cfc7822243a02af2cbd14648f2824 (patch) | |
tree | 88ec47de9b121671df3dbd24e9a4f07e365de861 | |
parent | dc68a633328c51142a160e723a32cc1427404674 (diff) | |
download | src-028e84c68b3cfc7822243a02af2cbd14648f2824.tar.gz src-028e84c68b3cfc7822243a02af2cbd14648f2824.zip |
allprison mutex was converted to sx(9) lock.
Notes
Notes:
svn path=/head/; revision=168402
-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 8f0ee0f9076f..a5e666df5cf2 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -276,6 +276,7 @@ static struct witness_order_list_entry order_lists[] = { */ { "proctree", &lock_class_sx }, { "allproc", &lock_class_sx }, + { "allprison", &lock_class_sx }, { NULL, NULL }, /* * Various mutexes @@ -288,7 +289,6 @@ static struct witness_order_list_entry order_lists[] = { { "session", &lock_class_mtx_sleep }, { "uidinfo hash", &lock_class_mtx_sleep }, { "uidinfo struct", &lock_class_mtx_sleep }, - { "allprison", &lock_class_mtx_sleep }, { NULL, NULL }, /* * Sockets |