Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance
/Linux-v4.19/tools/vm/ |
D | slabinfo.c | 801 unsigned long long min_objects = max, max_objects = 0, in totals() local 866 if (s->objects < min_objects) in totals() 867 min_objects = s->objects; in totals() 965 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
|
/Linux-v4.19/mm/ |
D | slub.c | 3193 unsigned int min_objects, unsigned int max_order, in slab_order() argument 3202 for (order = max(min_order, (unsigned int)get_order(min_objects * size)); in slab_order() 3220 unsigned int min_objects; in calculate_order() local 3231 min_objects = slub_min_objects; in calculate_order() 3232 if (!min_objects) in calculate_order() 3233 min_objects = 4 * (fls(nr_cpu_ids) + 1); in calculate_order() 3235 min_objects = min(min_objects, max_objects); in calculate_order() 3237 while (min_objects > 1) { in calculate_order() 3242 order = slab_order(size, min_objects, in calculate_order() 3248 min_objects--; in calculate_order()
|