svn commit: r309871 - stable/10/sys/kern
Mark Johnston
markj at FreeBSD.org
Mon Dec 12 02:24:47 UTC 2016
Author: markj
Date: Mon Dec 12 02:24:46 2016
New Revision: 309871
URL: https://svnweb.freebsd.org/changeset/base/309871
Log:
MFC r308350:
Fix WITNESS hints for pagequeue locks.
Modified:
stable/10/sys/kern/subr_witness.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/kern/subr_witness.c
==============================================================================
--- stable/10/sys/kern/subr_witness.c Mon Dec 12 02:22:49 2016 (r309870)
+++ stable/10/sys/kern/subr_witness.c Mon Dec 12 02:24:46 2016 (r309871)
@@ -592,7 +592,7 @@ static struct witness_order_list_entry o
* CDEV
*/
{ "vm map (system)", &lock_class_mtx_sleep },
- { "vm page queue", &lock_class_mtx_sleep },
+ { "vm pagequeue", &lock_class_mtx_sleep },
{ "vnode interlock", &lock_class_mtx_sleep },
{ "cdev", &lock_class_mtx_sleep },
{ NULL, NULL },
@@ -602,7 +602,7 @@ static struct witness_order_list_entry o
{ "vm map (user)", &lock_class_sx },
{ "vm object", &lock_class_rw },
{ "vm page", &lock_class_mtx_sleep },
- { "vm page queue", &lock_class_mtx_sleep },
+ { "vm pagequeue", &lock_class_mtx_sleep },
{ "pmap pv global", &lock_class_rw },
{ "pmap", &lock_class_mtx_sleep },
{ "pmap pv list", &lock_class_rw },
More information about the svn-src-stable-10
mailing list