mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
FreeBSD: Add missing memory reclamation accounting
Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored by: iXsystems, Inc. Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de> Reviewed-by: Umer Saleem <usaleem@ixsystems.com> Reviewed-by: Ameer Hamza <ahamza@ixsystems.com> Reviewed-by: Tony Hutter <hutter2@llnl.gov>
This commit is contained in:
parent
c8184d714b
commit
cdd53fea1e
@ -166,8 +166,12 @@ arc_lowmem(void *arg __unused, int howto __unused)
|
|||||||
* here from ARC itself and may hold ARC locks and thus risk a deadlock
|
* here from ARC itself and may hold ARC locks and thus risk a deadlock
|
||||||
* with ARC reclaim thread.
|
* with ARC reclaim thread.
|
||||||
*/
|
*/
|
||||||
if (curproc == pageproc)
|
if (curproc == pageproc) {
|
||||||
arc_wait_for_eviction(to_free, B_FALSE, B_FALSE);
|
arc_wait_for_eviction(to_free, B_FALSE, B_FALSE);
|
||||||
|
ARCSTAT_BUMP(arcstat_memory_indirect_count);
|
||||||
|
} else {
|
||||||
|
ARCSTAT_BUMP(arcstat_memory_direct_count);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user