Lines Matching defs:score
54 * Fragmentation score check interval for proactive compaction purposes.
61 * the "fragmentation score" of a node/zone.
1885 * A zone's fragmentation score is the external fragmentation wrt to the
1891 * ZONE_DMA32. For smaller zones, the score value remains close to zero,
1896 unsigned long score;
1898 score = zone->present_pages *
1900 return div64_ul(score, zone->zone_pgdat->node_present_pages + 1);
1905 * corresponding kcompactd thread when the node's fragmentation score
1907 * the node's score falls below the low threshold, or one of the back-off
1912 unsigned int score = 0;
1919 score += fragmentation_score_zone(zone);
1922 return score;
1976 int score, wmark_low;
1983 score = fragmentation_score_zone(cc->zone);
1986 if (score > wmark_low)
2534 * Compact all zones within a node till each zone's fragmentation score
2538 * It is possible that the function returns before reaching score targets
2828 unsigned int prev_score, score;
2836 score = fragmentation_score_node(pgdat);
2839 * score did not go down i.e. no progress made.
2841 proactive_defer = score < prev_score ?