From 627791f3c0f27322d7d5dd99630f03759278d824 Mon Sep 17 00:00:00 2001 From: chrisrd Date: Thu, 15 Jun 2017 06:23:02 +1000 Subject: [PATCH] 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 Signed-off-by: Chris Dunlop Closes #6228 --- man/man5/zfs-module-parameters.5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.