Deleted Added
full compact
27c27
< * $FreeBSD: head/sys/vm/uma_int.h 251709 2013-06-13 21:05:38Z jeff $
---
> * $FreeBSD: head/sys/vm/uma_int.h 251826 2013-06-17 03:43:47Z jeff $
299c299,302
< uma_fini uz_fini; /* Discards memory */
---
> uma_fini uz_fini; /* Finalizer for each item. */
> uma_import uz_import; /* Import new memory to cache. */
> uma_release uz_release; /* Release memory from cache. */
> void *uz_arg; /* Import/release argument. */
304,306c307,309
< uint64_t uz_allocs UMA_ALIGN; /* Total number of allocations */
< uint64_t uz_frees; /* Total number of frees */
< uint64_t uz_fails; /* Total number of alloc failures */
---
> volatile u_long uz_allocs UMA_ALIGN; /* Total number of allocations */
> volatile u_long uz_fails; /* Total number of alloc failures */
> volatile u_long uz_frees; /* Total number of frees */
335a339,345
> static inline uma_keg_t
> zone_first_keg(uma_zone_t zone)
> {
>
> return (LIST_FIRST(&zone->uz_kegs)->kl_keg);
> }
>