Lines Matching defs:max_pause
53 * by raising pause time to max_pause when falls below it.
874 * threshold as a hard limit when sleeping max_pause per page is not enough
1586 long max_pause,
1614 * below dirty_ratelimit/2 and the target pause is max_pause, the next
1615 * pause time will be max_pause*2 _trimmed down_ to max_pause. As a
1621 * nr_dirtied_pause so as not to exceed max_pause. When this happens,
1623 * 2) limit the target pause time to max_pause/2, so that the normal
1627 t = min(t, 1 + max_pause / 2);
1639 t = max_pause;
1648 if (pause > max_pause) {
1649 t = max_pause;
1814 long max_pause;
1896 max_pause = wb_max_pause(wb, sdtc->wb_dirty);
1897 min_pause = wb_min_pause(wb, max_pause,
1902 period = max_pause;
1903 pause = max_pause;
1936 if (unlikely(pause > max_pause)) {
1938 now += min(pause - max_pause, max_pause);
1939 pause = max_pause;