Fix typos in dbuf.c

This removes two large whitespaces in "modinfo zfs" as well as correcting
a couple typos.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: bunder2015 <omfgbunder@gmail.com>
Closes #5475
This commit is contained in:
bunder2015 2016-12-13 17:21:02 -05:00 committed by Brian Behlendorf
parent 02730c333c
commit f974e25dc1

View File

@ -3890,16 +3890,16 @@ MODULE_PARM_DESC(dbuf_cache_max_bytes,
module_param(dbuf_cache_hiwater_pct, uint, 0644); module_param(dbuf_cache_hiwater_pct, uint, 0644);
MODULE_PARM_DESC(dbuf_cache_hiwater_pct, MODULE_PARM_DESC(dbuf_cache_hiwater_pct,
"Percentage over dbuf_cache_max_bytes when dbufs \ "Percentage over dbuf_cache_max_bytes when dbufs must be evicted "
much be evicted directly."); "directly.");
module_param(dbuf_cache_lowater_pct, uint, 0644); module_param(dbuf_cache_lowater_pct, uint, 0644);
MODULE_PARM_DESC(dbuf_cache_lowater_pct, MODULE_PARM_DESC(dbuf_cache_lowater_pct,
"Percentage below dbuf_cache_max_bytes \ "Percentage below dbuf_cache_max_bytes when the evict thread stops "
when the evict thread stop evicting dbufs."); "evicting dbufs.");
module_param(dbuf_cache_max_shift, int, 0644); module_param(dbuf_cache_max_shift, int, 0644);
MODULE_PARM_DESC(dbuf_cache_max_shift, 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 */ /* END CSTYLED */
#endif #endif