diff options
author | наб <[email protected]> | 2021-05-29 19:10:49 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-06-09 13:05:34 -0700 |
commit | 2fe8060ceee0f7ebe0df3b0f83692a0a9f162cae (patch) | |
tree | 51893612d67aa3ee16f5386870c96a537449420a /man | |
parent | 6e01b47a2856009a2ced19733d2651f89e8ef8ee (diff) |
spl-module-parameters.5: remove spl_kmem_cache_{expire,obj_per_slab_min}
Both were removed in 4fbdb10c7b94439694ad18409662210099e09cb4 ("remove
kmem_cache module parameter KMC_EXPIRE_AGE")
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Richard Laager <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #12157
Diffstat (limited to 'man')
-rw-r--r-- | man/man5/spl-module-parameters.5 | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/man/man5/spl-module-parameters.5 b/man/man5/spl-module-parameters.5 index 5e28e694e..69a8d1f50 100644 --- a/man/man5/spl-module-parameters.5 +++ b/man/man5/spl-module-parameters.5 @@ -17,33 +17,6 @@ Description of the different parameters to the SPL module. .sp .ne 2 .na -\fBspl_kmem_cache_expire\fR (uint) -.ad -.RS 12n -Cache expiration is part of default Illumos cache behavior. The idea is -that objects in magazines which have not been recently accessed should be -returned to the slabs periodically. This is known as cache aging and -when enabled objects will be typically returned after 15 seconds. -.sp -On the other hand Linux slabs are designed to never move objects back to -the slabs unless there is memory pressure. This is possible because under -Linux the cache will be notified when memory is low and objects can be -released. -.sp -By default only the Linux method is enabled. It has been shown to improve -responsiveness on low memory systems and not negatively impact the performance -of systems with more memory. This policy may be changed by setting the -\fBspl_kmem_cache_expire\fR bit mask as follows, both policies may be enabled -concurrently. -.sp -0x01 - Aging (Illumos), 0x02 - Low memory (Linux) -.sp -Default value: \fB0x02\fR -.RE - -.sp -.ne 2 -.na \fBspl_kmem_cache_kmem_threads\fR (uint) .ad .RS 12n @@ -88,20 +61,6 @@ Default value: \fB8\fR .sp .ne 2 .na -\fBspl_kmem_cache_obj_per_slab_min\fR (uint) -.ad -.RS 12n -The minimum number of objects allowed per slab. Normally slabs will contain -\fBspl_kmem_cache_obj_per_slab\fR objects but for caches that contain very -large objects it's desirable to only have a few, or even just one, object per -slab. -.sp -Default value: \fB1\fR -.RE - -.sp -.ne 2 -.na \fBspl_kmem_cache_max_size\fR (uint) .ad .RS 12n |