svn commit: r270996 - stable/10/sys/vm
Alan Cox
alc at FreeBSD.org
Wed Sep 3 07:20:10 UTC 2014
Author: alc
Date: Wed Sep 3 07:20:09 2014
New Revision: 270996
URL: http://svnweb.freebsd.org/changeset/base/270996
Log:
This is a direct commit to account for the renaming of 'cnt' to 'vm_cnt'
in HEAD but not stable/10.
Modified:
stable/10/sys/vm/vm_pageout.c
Modified: stable/10/sys/vm/vm_pageout.c
==============================================================================
--- stable/10/sys/vm/vm_pageout.c Wed Sep 3 06:47:05 2014 (r270995)
+++ stable/10/sys/vm/vm_pageout.c Wed Sep 3 07:20:09 2014 (r270996)
@@ -1321,8 +1321,8 @@ relock_queues:
* Wakeup the sync daemon if we skipped a vnode in a writeable object
* and we didn't cache or free enough pages.
*/
- if (vnodes_skipped > 0 && page_shortage > vm_cnt.v_free_target -
- vm_cnt.v_free_min)
+ if (vnodes_skipped > 0 && page_shortage > cnt.v_free_target -
+ cnt.v_free_min)
(void)speedup_syncer();
/*
More information about the svn-src-stable-10
mailing list