View | Details | Raw Unified | Return to bug 126158
Collapse All | Expand All

(-)sys/vm/vm_pageout.c (-1 / +1 lines)
Lines 1284-1290 Link Here
1284
	pcount = cnt.v_active_count;
1284
	pcount = cnt.v_active_count;
1285
	fullintervalcount += vm_pageout_stats_interval;
1285
	fullintervalcount += vm_pageout_stats_interval;
1286
	if (fullintervalcount < vm_pageout_full_stats_interval) {
1286
	if (fullintervalcount < vm_pageout_full_stats_interval) {
1287
		tpcount = (vm_pageout_stats_max * cnt.v_active_count) / cnt.v_page_count;
1287
		tpcount = ((int64_t)vm_pageout_stats_max * cnt.v_active_count) / cnt.v_page_count;
1288
		if (pcount > tpcount)
1288
		if (pcount > tpcount)
1289
			pcount = tpcount;
1289
			pcount = tpcount;
1290
	} else {
1290
	} else {

Return to bug 126158