Home
last modified time | relevance | path

Searched refs:nom_cache (Results 1 – 5 of 5) sorted by relevance

/dflybsd-src/sys/kern/
H A Dkern_objcache.c213 objcache_create(const char *name, int cluster_limit, int nom_cache, in objcache_create() argument
266 if (nom_cache == 0) in objcache_create()
267 nom_cache = cluster_limit / 2; in objcache_create()
268 if (cluster_limit && nom_cache > cluster_limit) in objcache_create()
269 nom_cache = cluster_limit; in objcache_create()
270 if (nom_cache == 0) in objcache_create()
271 nom_cache = INITIAL_MAG_CAPACITY * 2; in objcache_create()
277 mag_capacity = mag_capacity_align(nom_cache / (ncpus + 1) / 2 + 1); in objcache_create()
332 nmagdepot = nom_cache / mag_capacity + 1; in objcache_create()
395 int cluster_limit, int nom_cache, in objcache_create_mbacked() argument
[all …]
H A Dkern_sysref.c146 0, srclass->nom_cache, in sysref_alloc()
/dflybsd-src/sys/sys/
H A Dobjcache.h62 *objcache_create(const char *name, int cluster_limit, int nom_cache,
71 int cluster_limit, int nom_cache,
H A Dsysref.h81 int nom_cache; /* nominal objects to cache */ member
/dflybsd-src/sys/vfs/devfs/
H A Ddevfs_core.c69 .nom_cache = 32,