[Bug 224080] ZFS: "arc_dnlc_evicts_thr" + "arc_reclaim_thread" - high CPU load during poudriere build...
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Thu Dec 7 22:55:58 UTC 2017
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=224080
--- Comment #26 from Jeff Roberson <jeff at FreeBSD.org> ---
We can use the new uma limit facility. I can produce a diff in a couple of
hours. This is essentially the same thing that kmem_map_free does however:
static int
sysctl_kmem_map_free(SYSCTL_HANDLER_ARGS)
{
u_long size, limit;
/* The sysctl is unsigned, implement as a saturation value. */
size = uma_size();
limit = uma_limit();
if (size > limit)
size = 0;
else
size = limit - size;
return (sysctl_handle_long(oidp, &size, 0, req));
}
We should make a uma accessor to compute this.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-fs
mailing list