From 76a2003f886254ddf9b07dddf291c983db50b292 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 14 Jun 2018 21:22:52 -0500 Subject: [PATCH] mkfs: manpage fixups in config file section A bit more clarification in the CONFIGURATION FILE FORMAT section of the mkfs.xfs manpage. Primarily, map the commandline switches to the section names explicitly. "optional default" sounds pretty weird, so call it the "defaults" configuration file instead. Document the comment format by example. Fix the sparse inode default setting in the example. Change the .BI tags to .B (there is no bold/italic switching). Signed-off-by: Eric Sandeen Reviewed-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- man/man8/mkfs.xfs.8.in | 56 ++++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/man/man8/mkfs.xfs.8.in b/man/man8/mkfs.xfs.8.in index cf4bdf827..0cb95cd47 100644 --- a/man/man8/mkfs.xfs.8.in +++ b/man/man8/mkfs.xfs.8.in @@ -957,53 +957,61 @@ Do not attempt to discard blocks at mkfs time. .B \-V Prints the version number and exits. .SH CONFIGURATION FILE FORMAT -The optional default configuration file in +The optional defaults configuration file in .B @sysconfdir@/xfs/mkfs/default as well as any alternate configuration file specified via the .B \-c -option follow a simple ini-style format as shown below. -Available options consist of a small subset of the parameters available -via the -.BR mkfs.xfs (8) -command line. -Currently all default parameters can only be either enabled or disabled, +option follow a simple ini-style format as shown below, with section names +corresponding to command-line options as follows: +.BR "\-d [data]" , +.BR "\-i [inode]" , +.BR "\-l [log]" , +.BR "\-m [metadata]" , +.BR "\-n [naming]" , +.BR "\-r [rtdev]" . +.br +In each of these sections, a subset of the command-line suboptions may be +specified to override built-in default settings. +Currently all parameters can only be either enabled or disabled, with a value of 1 to enable or 0 to disable. See below for a list of all supported configuration parameters and their current built-in default settings. .PP -.BI [data] +.B # Comments and blank lines are allowed +.br +.B [data] .br -.BI noalign=0 +.B noalign=0 .PP -.BI [inode] +.B [inode] .br -.BI align=1 +.B align=1 .br -.BI projid32bit=1 +.B projid32bit=1 .br -.BI sparse=0 +.B sparse=1 .PP -.BI [log] +.B [log] .br -.BI lazy-count=1 +.B lazy-count=1 .PP -.BI [metadata] +.B [metadata] .br -.BI crc=1 +.B crc=1 .br -.BI finobt=1 +.B finobt=1 .br -.BI rmapbt=0 +.B rmapbt=0 .br -.BI reflink=0 +.B reflink=0 .PP -.BI [naming] +.B [naming] .br -.BI ftype=1 +.B ftype=1 .PP -.BI [rtdev] +.B [rtdev] .br -.BI noalign=0 +.B noalign=0 .PP .SH SEE ALSO .BR xfs (5), -- 2.47.2