Lines Matching defs:uma_zone
459 struct uma_zone { struct
484 LIST_ENTRY(uma_zone) uz_link; /* List of all zones in keg */ argument
485 counter_u64_t uz_allocs; /* Total number of allocations */
486 counter_u64_t uz_frees; /* Total number of frees */
487 counter_u64_t uz_fails; /* Total number of alloc failures */
488 const char *uz_name; /* Text name of the zone */
489 char *uz_ctlname; /* sysctl safe name string. */
490 int uz_namecnt; /* duplicate name count. */
491 uint16_t uz_bucket_size_min; /* Min number of items in bucket */
492 uint16_t uz_reclaimers; /* pending reclaim operations. */
495 struct sysctl_oid *uz_oid; /* sysctl oid pointer. */
496 const char *uz_warning; /* Warning to print on failure */
497 struct timeval uz_ratecheck; /* Warnings rate-limiting */
498 struct task uz_maxaction; /* Task to run when at limit */
524 KASSERT(uma_zone_get_allocs((z)) == 0, \ argument