counter: add a bit missed in r334858

It happens to be a noop.
This commit is contained in:
mjg 2018-06-08 22:06:32 +00:00
parent f7f3ce47d0
commit 617832d02f

View File

@ -62,7 +62,7 @@ counter_u64_alloc(int flags)
{
counter_u64_t r;
r = uma_zalloc(pcpu_zone_64, flags & ~M_ZERO);
r = uma_zalloc_pcpu(pcpu_zone_64, flags);
if (r != NULL)
counter_u64_zero(r);
@ -73,7 +73,7 @@ void
counter_u64_free(counter_u64_t c)
{
uma_zfree(pcpu_zone_64, c);
uma_zfree_pcpu(pcpu_zone_64, c);
}
int