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/os/freebsd | |
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/os/freebsd')
-rw-r--r-- | module/os/freebsd/zfs/abd_os.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/module/os/freebsd/zfs/abd_os.c b/module/os/freebsd/zfs/abd_os.c index 500174775..b4d43b96a 100644 --- a/module/os/freebsd/zfs/abd_os.c +++ b/module/os/freebsd/zfs/abd_os.c @@ -488,3 +488,9 @@ abd_iter_unmap(struct abd_iter *aiter) aiter->iter_mapaddr = NULL; aiter->iter_mapsize = 0; } + +void +abd_cache_reap_now(void) +{ + kmem_cache_reap_soon(abd_chunk_cache); +} |