diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/uma_core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index 3268a1c..f08f84d 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -2413,8 +2413,7 @@ zfree_start: * 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; } |