Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.6/tools/mm/ |
D | slabinfo.c | 832 unsigned long long min_objects = max, max_objects = 0, in totals() local 897 if (s->objects < min_objects) in totals() 898 min_objects = s->objects; in totals() 996 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
|
/Linux-v6.6/mm/ |
D | slub.c | 4113 unsigned int min_objects, unsigned int max_order, in calc_slab_order() argument 4122 for (order = max(min_order, (unsigned int)get_order(min_objects * size)); in calc_slab_order() 4140 unsigned int min_objects; in calculate_order() local 4152 min_objects = slub_min_objects; in calculate_order() 4153 if (!min_objects) { in calculate_order() 4166 min_objects = 4 * (fls(nr_cpus) + 1); in calculate_order() 4169 min_objects = min(min_objects, max_objects); in calculate_order() 4171 while (min_objects > 1) { in calculate_order() 4176 order = calc_slab_order(size, min_objects, in calculate_order() 4182 min_objects--; in calculate_order()
|