Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/tools/vm/ |
D | slabinfo.c | 830 unsigned long long min_objects = max, max_objects = 0, in totals() local 895 if (s->objects < min_objects) in totals() 896 min_objects = s->objects; in totals() 994 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
|
/Linux-v6.1/mm/ |
D | slub.c | 3915 unsigned int min_objects, unsigned int max_order, in calc_slab_order() argument 3924 for (order = max(min_order, (unsigned int)get_order(min_objects * size)); in calc_slab_order() 3942 unsigned int min_objects; in calculate_order() local 3954 min_objects = slub_min_objects; in calculate_order() 3955 if (!min_objects) { in calculate_order() 3968 min_objects = 4 * (fls(nr_cpus) + 1); in calculate_order() 3971 min_objects = min(min_objects, max_objects); in calculate_order() 3973 while (min_objects > 1) { in calculate_order() 3978 order = calc_slab_order(size, min_objects, in calculate_order() 3984 min_objects--; in calculate_order()
|