Searched refs:min_objects (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/kernel/tools/vm/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | slub.c | 3475 unsigned int min_objects, unsigned int max_order, in slab_order() argument 3484 for (order = max(min_order, (unsigned int)get_order(min_objects * size)); in slab_order() 3502 unsigned int min_objects; in calculate_order() local 3513 min_objects = slub_min_objects; in calculate_order() 3514 if (!min_objects) in calculate_order() 3515 min_objects = 4 * (fls(nr_cpu_ids) + 1); in calculate_order() 3517 min_objects = min(min_objects, max_objects); in calculate_order() 3519 while (min_objects > 1) { in calculate_order() 3524 order = slab_order(size, min_objects, in calculate_order() 3530 min_objects--; in calculate_order()
|