Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.4/tools/vm/ |
D | slabinfo.c | 808 unsigned long long min_objects = max, max_objects = 0, in totals() local 873 if (s->objects < min_objects) in totals() 874 min_objects = s->objects; in totals() 972 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
|
/Linux-v5.4/mm/ |
D | slub.c | 3247 unsigned int min_objects, unsigned int max_order, in slab_order() argument 3256 for (order = max(min_order, (unsigned int)get_order(min_objects * size)); in slab_order() 3274 unsigned int min_objects; in calculate_order() local 3285 min_objects = slub_min_objects; in calculate_order() 3286 if (!min_objects) in calculate_order() 3287 min_objects = 4 * (fls(nr_cpu_ids) + 1); in calculate_order() 3289 min_objects = min(min_objects, max_objects); in calculate_order() 3291 while (min_objects > 1) { in calculate_order() 3296 order = slab_order(size, min_objects, in calculate_order() 3302 min_objects--; in calculate_order()
|