diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index 3268a1ca88de..f08f84d88268 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -2413,8 +2413,7 @@ uma_zfree_arg(uma_zone_t zone, void *item, void *udata) * If nothing else caught this, we'll just do an internal free. */ zfree_internal: - uma_zfree_internal(zone, item, udata, SKIP_DTOR, ZFREE_STATFAIL | - ZFREE_STATFREE); + uma_zfree_internal(zone, item, udata, SKIP_DTOR, ZFREE_STATFREE); return; }