Deleted Added
full compact
51c51
< __FBSDID("$FreeBSD: head/sys/vm/uma_core.c 163702 2006-10-26 12:55:32Z rwatson $");
---
> __FBSDID("$FreeBSD: head/sys/vm/uma_core.c 165809 2007-01-05 19:09:01Z jhb $");
2683a2684,2695
> /* See uma.h */
> int
> uma_zone_exhausted(uma_zone_t zone)
> {
> int full;
>
> ZONE_LOCK(zone);
> full = (zone->uz_keg->uk_flags & UMA_ZFLAG_FULL);
> ZONE_UNLOCK(zone);
> return (full);
> }
>