The fix in r356353 was insufficient. Not every architecture returns 0 for
EARLY_COUNTER. Only amd64 seems to. Suggested by: markj Reported by: lwhsu Reviewed by: markj PR: 243117
This commit is contained in:
parent
aeaef7d597
commit
bfb6b7a121
@ -4153,8 +4153,10 @@ uma_zone_get_cur(uma_zone_t zone)
|
||||
int64_t nitems;
|
||||
u_int i;
|
||||
|
||||
nitems = counter_u64_fetch(zone->uz_allocs) -
|
||||
counter_u64_fetch(zone->uz_frees);
|
||||
nitems = 0;
|
||||
if (zone->uz_allocs != EARLY_COUNTER && zone->uz_frees != EARLY_COUNTER)
|
||||
nitems = counter_u64_fetch(zone->uz_allocs) -
|
||||
counter_u64_fetch(zone->uz_frees);
|
||||
CPU_FOREACH(i)
|
||||
nitems += atomic_load_64(&zone->uz_cpu[i].uc_allocs) -
|
||||
atomic_load_64(&zone->uz_cpu[i].uc_frees);
|
||||
@ -4168,7 +4170,9 @@ uma_zone_get_allocs(uma_zone_t zone)
|
||||
uint64_t nitems;
|
||||
u_int i;
|
||||
|
||||
nitems = counter_u64_fetch(zone->uz_allocs);
|
||||
nitems = 0;
|
||||
if (zone->uz_allocs != EARLY_COUNTER)
|
||||
nitems = counter_u64_fetch(zone->uz_allocs);
|
||||
CPU_FOREACH(i)
|
||||
nitems += atomic_load_64(&zone->uz_cpu[i].uc_allocs);
|
||||
|
||||
@ -4181,7 +4185,9 @@ uma_zone_get_frees(uma_zone_t zone)
|
||||
uint64_t nitems;
|
||||
u_int i;
|
||||
|
||||
nitems = counter_u64_fetch(zone->uz_frees);
|
||||
nitems = 0;
|
||||
if (zone->uz_frees != EARLY_COUNTER)
|
||||
nitems = counter_u64_fetch(zone->uz_frees);
|
||||
CPU_FOREACH(i)
|
||||
nitems += atomic_load_64(&zone->uz_cpu[i].uc_frees);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user