Home
last modified time | relevance | path

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

/openbmc/linux/drivers/gpu/drm/
H A Ddrm_exec.c81 exec->max_objects = exec->objects ? PAGE_SIZE / sizeof(void *) : 0; in drm_exec_init()
137 if (unlikely(exec->num_objects == exec->max_objects)) { in drm_exec_obj_locked()
138 size_t size = exec->max_objects * sizeof(void *); in drm_exec_obj_locked()
147 exec->max_objects += PAGE_SIZE / sizeof(void *); in drm_exec_obj_locked()
/openbmc/linux/include/drm/
H A Ddrm_exec.h36 unsigned int max_objects; member
/openbmc/linux/tools/mm/
H A Dslabinfo.c832 unsigned long long min_objects = max, max_objects = 0, in totals() local
922 if (s->objects > max_objects) in totals()
923 max_objects = s->objects; in totals()
997 store_size(b3, max_objects);store_size(b4, total_objects); in totals()
/openbmc/linux/mm/
H A Dslub.c1297 int max_objects; in on_freelist() local
1322 max_objects = order_objects(slab_order(slab), s->size); in on_freelist()
1323 if (max_objects > MAX_OBJS_PER_PAGE) in on_freelist()
1324 max_objects = MAX_OBJS_PER_PAGE; in on_freelist()
1326 if (slab->objects != max_objects) { in on_freelist()
1328 slab->objects, max_objects); in on_freelist()
1329 slab->objects = max_objects; in on_freelist()
4148 unsigned int max_objects; in calculate_order() local
4175 max_objects = order_objects(slub_max_order, size); in calculate_order()
4176 min_objects = min(min_objects, max_objects); in calculate_order()
/openbmc/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()