Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/tools/vm/
H A Dslabinfo.c830 unsigned long long min_objects = max, max_objects = 0, in totals() local
920 if (s->objects > max_objects) in totals()
921 max_objects = s->objects; in totals()
995 store_size(b3, max_objects);store_size(b4, total_objects); in totals()
/OK3568_Linux_fs/kernel/mm/
H A Dslub.c1025 int max_objects; in on_freelist() local
1050 max_objects = order_objects(compound_order(page), s->size); in on_freelist()
1051 if (max_objects > MAX_OBJS_PER_PAGE) in on_freelist()
1052 max_objects = MAX_OBJS_PER_PAGE; in on_freelist()
1054 if (page->objects != max_objects) { in on_freelist()
1056 page->objects, max_objects); in on_freelist()
1057 page->objects = max_objects; in on_freelist()
3503 unsigned int max_objects; in calculate_order() local
3516 max_objects = order_objects(slub_max_order, size); in calculate_order()
3517 min_objects = min(min_objects, max_objects); in calculate_order()
/OK3568_Linux_fs/u-boot/fs/yaffs2/
H A Dyaffs_guts.h609 int max_objects; /* member
H A Dyaffsfs.c767 if (dev->param.max_objects && current_objects > dev->param.max_objects) in yaffsfs_TooManyObjects()