Home
last modified time | relevance | path

Searched refs:max_objects (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/tools/vm/
Dslabinfo.c794 unsigned long long min_objects = max, max_objects = 0, in totals() local
884 if (s->objects > max_objects) in totals()
885 max_objects = s->objects; in totals()
959 store_size(b3, max_objects);store_size(b4, total_objects); in totals()
/linux-4.4.14/mm/
Dzsmalloc.c625 int inuse, max_objects; in get_fullness_group() local
630 max_objects = page->objects; in get_fullness_group()
634 else if (inuse == max_objects) in get_fullness_group()
636 else if (inuse <= 3 * max_objects / fullness_threshold_frac) in get_fullness_group()
Dslub.c901 int max_objects; in on_freelist() local
926 max_objects = order_objects(compound_order(page), s->size, s->reserved); in on_freelist()
927 if (max_objects > MAX_OBJS_PER_PAGE) in on_freelist()
928 max_objects = MAX_OBJS_PER_PAGE; in on_freelist()
930 if (page->objects != max_objects) { in on_freelist()
932 "should be %d", page->objects, max_objects); in on_freelist()
933 page->objects = max_objects; in on_freelist()
3049 int max_objects; in calculate_order() local
3062 max_objects = order_objects(slub_max_order, size, reserved); in calculate_order()
3063 min_objects = min(min_objects, max_objects); in calculate_order()