summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2014-09-03 07:20:09 +0000
committeralc <alc@FreeBSD.org>2014-09-03 07:20:09 +0000
commitf97e8c26428e428b16028e10b20000408e09f4a5 (patch)
treef07946932b68deacc9f50d4eb218e9469596b382 /sys/vm
parent3295e3612efb35e29114d5450a47113e3becece1 (diff)
downloadFreeBSD-src-f97e8c26428e428b16028e10b20000408e09f4a5.zip
FreeBSD-src-f97e8c26428e428b16028e10b20000408e09f4a5.tar.gz
This is a direct commit to account for the renaming of 'cnt' to 'vm_cnt'
in HEAD but not stable/10.
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_pageout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index 33ead33..8dbffba 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -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();
/*
OpenPOWER on IntegriCloud