diff options
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/dbuf.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/zfs/dbuf.c b/module/zfs/dbuf.c index 38334b3d2..c5a894ede 100644 --- a/module/zfs/dbuf.c +++ b/module/zfs/dbuf.c @@ -3890,16 +3890,16 @@ MODULE_PARM_DESC(dbuf_cache_max_bytes, module_param(dbuf_cache_hiwater_pct, uint, 0644); MODULE_PARM_DESC(dbuf_cache_hiwater_pct, - "Percentage over dbuf_cache_max_bytes when dbufs \ - much be evicted directly."); + "Percentage over dbuf_cache_max_bytes when dbufs must be evicted " + "directly."); module_param(dbuf_cache_lowater_pct, uint, 0644); MODULE_PARM_DESC(dbuf_cache_lowater_pct, - "Percentage below dbuf_cache_max_bytes \ - when the evict thread stop evicting dbufs."); + "Percentage below dbuf_cache_max_bytes when the evict thread stops " + "evicting dbufs."); module_param(dbuf_cache_max_shift, int, 0644); MODULE_PARM_DESC(dbuf_cache_max_shift, - "Cap the size of the dbuf cache to log2 fraction of arc size."); + "Cap the size of the dbuf cache to a log2 fraction of arc size."); /* END CSTYLED */ #endif |