aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys/zthr.h
diff options
context:
space:
mode:
authorBrad Lewis <[email protected]>2017-03-15 16:41:52 -0700
committerBrian Behlendorf <[email protected]>2018-12-26 13:22:28 -0800
commit3ec34e55271d433e3c2dbb861a886361e006ca0a (patch)
treefab6a16b1b471804360b4162a4a833a9d3be5707 /include/sys/zthr.h
parent00f198de6b6ac663926bff2666d956a61cea85db (diff)
OpenZFS 9284 - arc_reclaim_thread has 2 jobs
Following the fix for 9018 (Replace kmem_cache_reap_now() with kmem_cache_reap_soon), the arc_reclaim_thread() no longer blocks while reaping. However, the code is still confusing and error-prone, because this thread has two responsibilities. We should instead separate this into two threads each with their own responsibility: 1. keep `arc_size` under `arc_c`, by calling `arc_adjust()`, which improves `arc_is_overflowing()` 2. keep enough free memory in the system, by calling `arc_kmem_reap_now()` plus `arc_shrink()`, which improves `arc_available_memory()`. Furthermore, we can use the zthr infrastructure to separate the "should we do something" from "do it" parts of the logic, and normalize the start up / shut down of the threads. Authored by: Brad Lewis <[email protected]> Reviewed by: Matt Ahrens <[email protected]> Reviewed by: Serapheim Dimitropoulos <[email protected]> Reviewed by: Pavel Zakharov <[email protected]> Reviewed by: Dan Kimmel <[email protected]> Reviewed by: Paul Dagnelie <[email protected]> Reviewed by: Dan McDonald <[email protected]> Reviewed by: Tim Kordas <[email protected]> Reviewed by: Tim Chase <[email protected]> Reviewed by: Brian Behlendorf <[email protected]> Ported-by: Brad Lewis <[email protected]> Signed-off-by: Brad Lewis <[email protected]> OpenZFS-issue: https://www.illumos.org/issues/9284 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/de753e34f9 Closes #8165
Diffstat (limited to 'include/sys/zthr.h')
-rw-r--r--include/sys/zthr.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sys/zthr.h b/include/sys/zthr.h
index 62da2eea8..ce6033ecb 100644
--- a/include/sys/zthr.h
+++ b/include/sys/zthr.h
@@ -29,6 +29,7 @@ struct zthr {
kmutex_t zthr_lock;
kcondvar_t zthr_cv;
boolean_t zthr_cancel;
+ hrtime_t zthr_wait_time;
zthr_checkfunc_t *zthr_checkfunc;
zthr_func_t *zthr_func;
@@ -38,6 +39,9 @@ struct zthr {
extern zthr_t *zthr_create(zthr_checkfunc_t checkfunc,
zthr_func_t *func, void *arg);
+extern zthr_t *zthr_create_timer(zthr_checkfunc_t *checkfunc,
+ zthr_func_t *func, void *arg, hrtime_t nano_wait);
+
extern void zthr_exit(zthr_t *t, int rc);
extern void zthr_destroy(zthr_t *t);