diff options
author | Matthew Ahrens <[email protected]> | 2017-02-15 15:49:33 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-02-15 15:49:33 -0800 |
commit | c30e58c4628de46c36870cdedea9052711092a85 (patch) | |
tree | 5f98615d10e325a5d006c6c7e24a0e96cdd61223 /man | |
parent | 3d3fe9f9bb4364718cb8c54d8c86bccc84ae3141 (diff) |
zfs_arc_num_sublists_per_state should be common to all multilists
The global tunable zfs_arc_num_sublists_per_state is used by the ARC and
the dbuf cache, and other users are planned. We should change this
tunable to be common to all multilists. This tuning may be overridden
on a per-multilist basis.
Reviewed-by: Pavel Zakharov <[email protected]>
Reviewed-by: Dan Kimmel <[email protected]>
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Matthew Ahrens <[email protected]>
Closes #5764
Diffstat (limited to 'man')
-rw-r--r-- | man/man5/zfs-module-parameters.5 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/man/man5/zfs-module-parameters.5 b/man/man5/zfs-module-parameters.5 index b1c99cb17..ca92af551 100644 --- a/man/man5/zfs-module-parameters.5 +++ b/man/man5/zfs-module-parameters.5 @@ -622,15 +622,16 @@ Default value: \fB0\fR. .sp .ne 2 .na -\fBzfs_arc_num_sublists_per_state\fR (int) +\fBzfs_multilist_num_sublists\fR (int) .ad .RS 12n To allow more fine-grained locking, each ARC state contains a series of lists for both data and meta data objects. Locking is performed at the level of these "sub-lists". This parameters controls the number of -sub-lists per ARC state. +sub-lists per ARC state, and also applies to other uses of the +multilist data structure. .sp -Default value: \fB1\fR or the number of online CPUs, whichever is greater +Default value: \fB4\fR or the number of online CPUs, whichever is greater .RE .sp |