diff options
author | Matthew Macy <[email protected]> | 2020-06-17 21:44:13 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-17 21:44:13 -0700 |
commit | 7564073ed6344c12e6bc4ffabd130522d937fb93 (patch) | |
tree | a4718c134d55297d537f8d79da6a6a82051d40cc /module/zfs/arc.c | |
parent | 4458157beecdf892a596bf8a61a958ebc492f0b3 (diff) |
Add abd_cache_reap_now for abd_chunk_cache users
Apparently missed in the initial port integration was
the need to reap the abd_chunk_cache on FreeBSD. This
change addresses that oversight.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Alexander Motin <[email protected]>
Signed-off-by: Matt Macy <[email protected]>
Closes #10474
Diffstat (limited to 'module/zfs/arc.c')
-rw-r--r-- | module/zfs/arc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 5717405d6..874cc02e8 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -4678,6 +4678,7 @@ arc_kmem_reap_soon(void) kmem_cache_reap_now(hdr_full_cache); kmem_cache_reap_now(hdr_l2only_cache); kmem_cache_reap_now(zfs_btree_leaf_cache); + abd_cache_reap_now(); if (zio_arena != NULL) { /* |