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 /module/zfs/dbuf.c | |
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 'module/zfs/dbuf.c')
-rw-r--r-- | module/zfs/dbuf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/module/zfs/dbuf.c b/module/zfs/dbuf.c index 173e1dbb8..096f74a00 100644 --- a/module/zfs/dbuf.c +++ b/module/zfs/dbuf.c @@ -673,7 +673,6 @@ retry: multilist_create(&dbuf_cache, sizeof (dmu_buf_impl_t), offsetof(dmu_buf_impl_t, db_cache_link), - zfs_arc_num_sublists_per_state, dbuf_cache_multilist_index_func); refcount_create(&dbuf_cache_size); |