Lines Matching defs:score
30 * Fragmentation score check interval for proactive compaction purposes.
59 * the "fragmentation score" of a node/zone.
2095 * A zone's fragmentation score is the external fragmentation wrt to the
2104 * A weighted zone's fragmentation score is the external fragmentation
2110 * ZONE_DMA32. For smaller zones, the score value remains close to zero,
2115 unsigned long score;
2117 score = zone->present_pages * fragmentation_score_zone(zone);
2118 return div64_ul(score, zone->zone_pgdat->node_present_pages + 1);
2123 * corresponding kcompactd thread when the node's fragmentation score
2125 * the node's score falls below the low threshold, or one of the back-off
2130 unsigned int score = 0;
2139 score += fragmentation_score_zone_weighted(zone);
2142 return score;
2196 int score, wmark_low;
2203 score = fragmentation_score_zone(cc->zone);
2206 if (score > wmark_low)
2752 * Compact all zones within a node till each zone's fragmentation score
2756 * It is possible that the function returns before reaching score targets
3093 * on the fragmentation score, this timeout is updated.
3097 unsigned int prev_score, score;
3101 score = fragmentation_score_node(pgdat);
3104 * score did not go down i.e. no progress made.
3106 if (unlikely(score >= prev_score))