svn commit: r326629 - head/sys/vm

Mark Johnston markj at FreeBSD.org
Wed Dec 6 18:36:56 UTC 2017


Author: markj
Date: Wed Dec  6 18:36:54 2017
New Revision: 326629
URL: https://svnweb.freebsd.org/changeset/base/326629

Log:
  Use unique wait messages in the page daemon control loop.
  
  Discussed with:	alc
  MFC after:	1 week

Modified:
  head/sys/vm/vm_pageout.c

Modified: head/sys/vm/vm_pageout.c
==============================================================================
--- head/sys/vm/vm_pageout.c	Wed Dec  6 18:11:56 2017	(r326628)
+++ head/sys/vm/vm_pageout.c	Wed Dec  6 18:36:54 2017	(r326629)
@@ -1818,7 +1818,7 @@ vm_pageout_worker(void *arg)
 			 */
 			mtx_unlock(&vm_page_queue_free_mtx);
 			if (pass >= 1)
-				pause("psleep", hz / VM_INACT_SCAN_RATE);
+				pause("pwait", hz / VM_INACT_SCAN_RATE);
 			pass++;
 		} else {
 			/*


More information about the svn-src-head mailing list