diff options
author | chrisrd <[email protected]> | 2017-06-15 06:23:02 +1000 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-06-14 13:23:02 -0700 |
commit | 627791f3c0f27322d7d5dd99630f03759278d824 (patch) | |
tree | f769608a48f76490da66b8fee688adb266143bda /man | |
parent | 8f7933fec906f14c40af297d2c89fc2567a39a1e (diff) |
Fix manual description of zfs_arc_dnode_limit
In arc_evict_state() we start pruning when arc_dnode_size >
arc_dnode_limit, i.e. arc_dnode_limit is a ceiling rather than a
floor.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Chris Dunlop <[email protected]>
Closes #6228
Diffstat (limited to 'man')
-rw-r--r-- | man/man5/zfs-module-parameters.5 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/man5/zfs-module-parameters.5 b/man/man5/zfs-module-parameters.5 index d4bab8327..0d2745aec 100644 --- a/man/man5/zfs-module-parameters.5 +++ b/man/man5/zfs-module-parameters.5 @@ -412,7 +412,7 @@ Default value: \fB2\fR. .RS 12n When the number of bytes consumed by dnodes in the ARC exceeds this number of bytes, try to unpin some of it in response to demand for non-metadata. This -value acts as a floor to the amount of dnode metadata, and defaults to 0 which +value acts as a ceiling to the amount of dnode metadata, and defaults to 0 which indicates that a percent which is based on \fBzfs_arc_dnode_limit_percent\fR of the ARC meta buffers that may be used for dnodes. |