svn commit: r207759 - head/sys/vm

Jung-uk Kim jkim at FreeBSD.org
Fri May 7 21:06:52 UTC 2010


Author: jkim
Date: Fri May  7 21:06:52 2010
New Revision: 207759
URL: http://svn.freebsd.org/changeset/base/207759

Log:
  Fix a typo in the previous commit.

Modified:
  head/sys/vm/vm_pageout.c

Modified: head/sys/vm/vm_pageout.c
==============================================================================
--- head/sys/vm/vm_pageout.c	Fri May  7 20:58:50 2010	(r207758)
+++ head/sys/vm/vm_pageout.c	Fri May  7 21:06:52 2010	(r207759)
@@ -765,7 +765,7 @@ vm_pageout_scan(int pass)
 	 */
 	page_shortage = vm_paging_target() + addl_page_shortage_init;
 
-	vm_pageout_marker_init(&marker, PQ_INACTIVE);
+	vm_pageout_init_marker(&marker, PQ_INACTIVE);
 
 	/*
 	 * Start scanning the inactive queue for pages we can move to the


More information about the svn-src-head mailing list