Searched refs:max_objects (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/tools/vm/ |
D | slabinfo.c | 774 unsigned long long min_objects = max, max_objects = 0, in totals() local 864 if (s->objects > max_objects) in totals() 865 max_objects = s->objects; in totals() 937 store_size(b3, max_objects);store_size(b4, total_objects); in totals()
|
/linux-4.1.27/mm/ |
D | zsmalloc.c | 634 int inuse, max_objects; in get_fullness_group() local 639 max_objects = page->objects; in get_fullness_group() 643 else if (inuse == max_objects) in get_fullness_group() 645 else if (inuse <= 3 * max_objects / fullness_threshold_frac) in get_fullness_group()
|
D | slub.c | 899 int max_objects; in on_freelist() local 924 max_objects = order_objects(compound_order(page), s->size, s->reserved); in on_freelist() 925 if (max_objects > MAX_OBJS_PER_PAGE) in on_freelist() 926 max_objects = MAX_OBJS_PER_PAGE; in on_freelist() 928 if (page->objects != max_objects) { in on_freelist() 930 "should be %d", page->objects, max_objects); in on_freelist() 931 page->objects = max_objects; in on_freelist() 2835 int max_objects; in calculate_order() local 2848 max_objects = order_objects(slub_max_order, size, reserved); in calculate_order() 2849 min_objects = min(min_objects, max_objects); in calculate_order()
|