Home
last modified time | relevance | path

Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/tools/vm/
Dslabinfo.c794 unsigned long long min_objects = max, max_objects = 0, in totals() local
859 if (s->objects < min_objects) in totals()
860 min_objects = s->objects; in totals()
958 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
/linux-4.4.14/mm/
Dslub.c3020 static inline int slab_order(int size, int min_objects, in slab_order() argument
3030 for (order = max(min_order, get_order(min_objects * size + reserved)); in slab_order()
3047 int min_objects; in calculate_order() local
3059 min_objects = slub_min_objects; in calculate_order()
3060 if (!min_objects) in calculate_order()
3061 min_objects = 4 * (fls(nr_cpu_ids) + 1); in calculate_order()
3063 min_objects = min(min_objects, max_objects); in calculate_order()
3065 while (min_objects > 1) { in calculate_order()
3068 order = slab_order(size, min_objects, in calculate_order()
3074 min_objects--; in calculate_order()